diff options
author | Bruce Momjian | 2007-11-10 23:30:46 +0000 |
---|---|---|
committer | Bruce Momjian | 2007-11-10 23:30:46 +0000 |
commit | c3c69ab4fd25a20749b850d34cbc8ce3f1812e3b (patch) | |
tree | a7d9b4501297216ac71f597dca3840090ae791d5 /doc/src/sgml/btree-gist.sgml | |
parent | 6e414a171e8a91966b10ecd14aa367422870bdd2 (diff) |
Move most /contrib README files into SGML. Some still need conversion
or will never be converted.
Diffstat (limited to 'doc/src/sgml/btree-gist.sgml')
-rw-r--r-- | doc/src/sgml/btree-gist.sgml | 40 |
1 files changed, 40 insertions, 0 deletions
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 @@ +<sect1> + <!-- + <indexterm zone="btree-gist"> + <primary>btree-gist</primary> + </indexterm> + --> + + <title>btree-gist</title> + + <para> + 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. + </para> + + <sect2> + <title>Example usage</title> + <programlisting> + CREATE TABLE test (a int4); + -- create index + CREATE INDEX testidx ON test USING gist (a); + -- query + SELECT * FROM test WHERE a < 10; + </programlisting> + </sect2> + + <sect2> + <title>Authors</title> + <para> + All work was done by Teodor Sigaev (<email>teodor@stack.net</email>) , + Oleg Bartunov (<email>oleg@sai.msu.su</email>), Janko Richter + (<email>jankorichter@yahoo.de</email>). See + <ulink url="http://www.sai.msu.su/~megera/postgres/gist"></ulink> for additional + information. + </para> + </sect2> + +</sect1> + |