diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2001-08-22 18:27:54 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2001-08-22 18:27:54 +0000 |
commit | a9289708af0bff1c45deae79a7c8f6db75d8ca16 (patch) | |
tree | 1d9f62f2266b322379d797d73b9af640012e0699 /contrib/btree_gist/README.btree_gist | |
parent | a54075a6d6df36f4c676486b4711ccfc650bf5e2 (diff) | |
download | postgresql-a9289708af0bff1c45deae79a7c8f6db75d8ca16.tar.gz postgresql-a9289708af0bff1c45deae79a7c8f6db75d8ca16.zip |
New contrib module for BTREE emulation in GiST.
From Oleg Bartunov and Teodor Sigaev.
Diffstat (limited to 'contrib/btree_gist/README.btree_gist')
-rw-r--r-- | contrib/btree_gist/README.btree_gist | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/contrib/btree_gist/README.btree_gist b/contrib/btree_gist/README.btree_gist new file mode 100644 index 00000000000..d61db62c3c9 --- /dev/null +++ b/contrib/btree_gist/README.btree_gist @@ -0,0 +1,31 @@ +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; + |