From c3c69ab4fd25a20749b850d34cbc8ce3f1812e3b Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Sat, 10 Nov 2007 23:30:46 +0000 Subject: Move most /contrib README files into SGML. Some still need conversion or will never be converted. --- doc/src/sgml/btree-gist.sgml | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 doc/src/sgml/btree-gist.sgml (limited to 'doc/src/sgml/btree-gist.sgml') diff --git a/doc/src/sgml/btree-gist.sgml b/doc/src/sgml/btree-gist.sgml new file mode 100644 index 00000000000..4e1126e33c3 --- /dev/null +++ b/doc/src/sgml/btree-gist.sgml @@ -0,0 +1,40 @@ + + + + btree-gist + + + btree-gist is a B-Tree implementation using GiST that supports the int2, int4, + int8, float4, float8 timestamp with/without time zone, time + with/without time zone, date, interval, oid, money, macaddr, char, + varchar/text, bytea, numeric, bit, varbit and inet/cidr types. + + + + Example usage + + CREATE TABLE test (a int4); + -- create index + CREATE INDEX testidx ON test USING gist (a); + -- query + SELECT * FROM test WHERE a < 10; + + + + + Authors + + All work was done by Teodor Sigaev (teodor@stack.net) , + Oleg Bartunov (oleg@sai.msu.su), Janko Richter + (jankorichter@yahoo.de). See + for additional + information. + + + + + -- cgit v1.2.3