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
|
|
|
-- char check
|
|
|
|
CREATE TABLE vchartmp (a varchar(32));
|
|
|
|
\copy vchartmp from 'data/char.data'
|
|
|
|
SET enable_seqscan=on;
|
|
|
|
SELECT count(*) FROM vchartmp WHERE a < '31b0'::varchar(32);
|
|
|
|
count
|
|
|
|
-------
|
2005-07-01 21:44:56 +08:00
|
|
|
587
|
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
|
|
|
(1 row)
|
|
|
|
|
|
|
|
SELECT count(*) FROM vchartmp WHERE a <= '31b0'::varchar(32);
|
|
|
|
count
|
|
|
|
-------
|
2005-07-01 21:44:56 +08:00
|
|
|
588
|
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
|
|
|
(1 row)
|
|
|
|
|
|
|
|
SELECT count(*) FROM vchartmp WHERE a = '31b0'::varchar(32);
|
|
|
|
count
|
|
|
|
-------
|
|
|
|
1
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
SELECT count(*) FROM vchartmp WHERE a >= '31b0'::varchar(32);
|
|
|
|
count
|
|
|
|
-------
|
|
|
|
401
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
SELECT count(*) FROM vchartmp WHERE a > '31b0'::varchar(32);
|
|
|
|
count
|
|
|
|
-------
|
|
|
|
400
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
CREATE INDEX vcharidx ON vchartmp USING GIST ( text(a) );
|
|
|
|
SET enable_seqscan=off;
|
|
|
|
SELECT count(*) FROM vchartmp WHERE a < '31b0'::varchar(32);
|
|
|
|
count
|
|
|
|
-------
|
2005-07-01 21:44:56 +08:00
|
|
|
587
|
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
|
|
|
(1 row)
|
|
|
|
|
|
|
|
SELECT count(*) FROM vchartmp WHERE a <= '31b0'::varchar(32);
|
|
|
|
count
|
|
|
|
-------
|
2005-07-01 21:44:56 +08:00
|
|
|
588
|
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
|
|
|
(1 row)
|
|
|
|
|
|
|
|
SELECT count(*) FROM vchartmp WHERE a = '31b0'::varchar(32);
|
|
|
|
count
|
|
|
|
-------
|
|
|
|
1
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
SELECT count(*) FROM vchartmp WHERE a >= '31b0'::varchar(32);
|
|
|
|
count
|
|
|
|
-------
|
|
|
|
401
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
SELECT count(*) FROM vchartmp WHERE a > '31b0'::varchar(32);
|
|
|
|
count
|
|
|
|
-------
|
|
|
|
400
|
|
|
|
(1 row)
|
|
|
|
|