You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
postgres/contrib/btree_gist
Bruce Momjian 089003fb46 pgindent run. 22 years ago
..
data New contrib module for BTREE emulation in GiST. 24 years ago
expected Update contrib regression tests for recent error message editing. 22 years ago
sql We just released new version of contrib/btree_gist 23 years ago
Makefile please apply attached patch to current CVS. 23 years ago
README.btree_gist please apply attached patch to current CVS. 23 years ago
btree_common.c pgindent run. 22 years ago
btree_gist.h pgindent run. 22 years ago
btree_gist.sql.in Backend support for autocommit removed, per recent discussions. The 22 years ago
btree_num.c.in Error message editing in contrib (mostly by Joe Conway --- thanks Joe!) 22 years ago
btree_ts.c Error message editing in contrib (mostly by Joe Conway --- thanks Joe!) 22 years ago

README.btree_gist

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
(oleg@sai.msu.su). See http://www.sai.msu.su/~megera/postgres/gist
for additional information.

NEWS:
Feb 5, 2003 - btree_gist now support int2, int8, float4, float8 !
Thank Janko Richter <jankorichter@yahoo.de> for
contribution.

NOTICE:
This version will works only with postgresql version 7.3 and above
because of changes in interface of function calling and in system
tables.

INSTALLATION:

gmake
gmake install
-- load functions
psql <database> < btree_gist.sql

REGRESSION TEST:

gmake installcheck

EXAMPLE USAGE:

create table test (a int4);
-- create index
create index testidx on test using gist (a);
-- query
select * from test where a < 10;