1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-11 20:28:21 +03:00

please apply attached patch to current CVS.

btree_gist now supports int2 !
Thanks Janko Richter for contribution.
This commit is contained in:
Bruce Momjian
2003-03-20 18:59:18 +00:00
parent 3be6367b9f
commit e0d043b94d
4 changed files with 91 additions and 9 deletions

View File

@ -1,4 +1,4 @@
This is B-Tree implementation using GiST for int4, int8, float4, float8
This is B-Tree implementation using GiST for int2, int4, int8, float4, float8
timestamp types.
All work was done by Teodor Sigaev (teodor@stack.net) and Oleg Bartunov
@ -6,7 +6,7 @@ All work was done by Teodor Sigaev (teodor@stack.net) and Oleg Bartunov
for additional information.
NEWS:
Feb 5, 2003 - btree_gist now support int8, float4, float8 !
Feb 5, 2003 - btree_gist now support int2, int8, float4, float8 !
Thank Janko Richter <jankorichter@yahoo.de> for
contribution.