PostgreSQL 8.3beta4 Documentation | ||||
---|---|---|---|---|
Prev | Fast Backward | Appendix F. Additional Supplied Modules | Fast Forward | Next |
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.
CREATE TABLE test (a int4); -- create index CREATE INDEX testidx ON test USING gist (a); -- query SELECT * FROM test WHERE a < 10;
All work was done by Teodor Sigaev (<teodor@stack.net>
) ,
Oleg Bartunov (<oleg@sai.msu.su>
), Janko Richter
(<jankorichter@yahoo.de>
). See
http://www.sai.msu.su/~megera/postgres/gist for additional
information.