postgresql/contrib/btree_gist
Tom Lane 29ec29ffac Makefile forgot to install README.btree_gist. 2001-08-23 16:55:53 +00:00
..
data New contrib module for BTREE emulation in GiST. 2001-08-22 18:27:54 +00:00
expected New contrib module for BTREE emulation in GiST. 2001-08-22 18:27:54 +00:00
sql New contrib module for BTREE emulation in GiST. 2001-08-22 18:27:54 +00:00
Makefile Makefile forgot to install README.btree_gist. 2001-08-23 16:55:53 +00:00
README.btree_gist New contrib module for BTREE emulation in GiST. 2001-08-22 18:27:54 +00:00
btree_gist.c tskey_cmp() should use timestamp_cmp() instead of doing its own 2001-08-23 15:07:41 +00:00
btree_gist.sql.in New contrib module for BTREE emulation in GiST. 2001-08-22 18:27:54 +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;