postgresql/contrib/btree_gist
Tom Lane 1e970dcee8 Ooops, forgot to fix contrib regression tests for WARNING/NOTICE change. 2002-11-01 22:46:04 +00:00
..
data New contrib module for BTREE emulation in GiST. 2001-08-22 18:27:54 +00:00
expected Ooops, forgot to fix contrib regression tests for WARNING/NOTICE change. 2002-11-01 22:46:04 +00:00
sql SET autocommit no longer needed in /contrib because pg_regress.sh does 2002-10-21 01:42:14 +00:00
Makefile To fix the perpetually broken makefiles in the contrib tree, I have 2001-09-06 10:49:30 +00:00
README.btree_gist New contrib module for BTREE emulation in GiST. 2001-08-22 18:27:54 +00:00
btree_gist.c pgindent run. 2002-09-04 20:31:48 +00:00
btree_gist.sql.in Update /contrib for "autocommit TO 'on'". 2002-10-18 18:41:22 +00:00

README.btree_gist

This is B-Tree implementation using GiST for int4 and 
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.

NOTICE:
     This version will works only with postgresql version 7.2 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;