summaryrefslogtreecommitdiff
path: root/contrib/btree_gist/README.btree_gist
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/btree_gist/README.btree_gist')
-rw-r--r--contrib/btree_gist/README.btree_gist31
1 files changed, 0 insertions, 31 deletions
diff --git a/contrib/btree_gist/README.btree_gist b/contrib/btree_gist/README.btree_gist
deleted file mode 100644
index d61db62c3c9..00000000000
--- a/contrib/btree_gist/README.btree_gist
+++ /dev/null
@@ -1,31 +0,0 @@
-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;
-