postgresql/contrib/btree_gist
2002-08-23 00:04:52 +00:00
..
data
expected Update contrib regression tests for OPAQUE datatype changes. 2002-08-23 00:04:52 +00:00
sql
btree_gist.c Please, apply attached patch of contrib/btree_gist to 7.2.1 and current 2002-02-22 05:47:50 +00:00
btree_gist.sql.in Add a bunch of pseudo-types to replace the behavior formerly associated 2002-08-22 00:01:51 +00:00
Makefile
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;