New version. Add support for int2, int8, float4, float8, timestamp with/without time zone, time with/without time zone, date, interval, oid, money and macaddr, char, varchar/text, bytea, numeric, bit, varbit, inet/cidr types for GiST
2004-05-28 18:43:32 +08:00
|
|
|
--
|
|
|
|
-- first, define the datatype. Turn off echoing so that expected file
|
|
|
|
-- does not depend on contents of btree_gist.sql.
|
|
|
|
--
|
2007-11-13 14:29:04 +08:00
|
|
|
SET client_min_messages = warning;
|
New version. Add support for int2, int8, float4, float8, timestamp with/without time zone, time with/without time zone, date, interval, oid, money and macaddr, char, varchar/text, bytea, numeric, bit, varbit, inet/cidr types for GiST
2004-05-28 18:43:32 +08:00
|
|
|
\set ECHO none
|
|
|
|
\i btree_gist.sql
|
|
|
|
\set ECHO all
|
2007-11-13 14:29:04 +08:00
|
|
|
RESET client_min_messages;
|