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
|
|
|
-- date check
|
|
|
|
CREATE TABLE datetmp (a date);
|
|
|
|
\copy datetmp from 'data/date.data'
|
|
|
|
SET enable_seqscan=on;
|
|
|
|
SELECT count(*) FROM datetmp WHERE a < '2001-02-13';
|
|
|
|
count
|
|
|
|
-------
|
|
|
|
230
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
SELECT count(*) FROM datetmp WHERE a <= '2001-02-13';
|
|
|
|
count
|
|
|
|
-------
|
|
|
|
231
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
SELECT count(*) FROM datetmp WHERE a = '2001-02-13';
|
|
|
|
count
|
|
|
|
-------
|
|
|
|
1
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
SELECT count(*) FROM datetmp WHERE a >= '2001-02-13';
|
|
|
|
count
|
|
|
|
-------
|
|
|
|
314
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
SELECT count(*) FROM datetmp WHERE a > '2001-02-13';
|
|
|
|
count
|
|
|
|
-------
|
|
|
|
313
|
|
|
|
(1 row)
|
|
|
|
|
2011-03-03 03:43:24 +08:00
|
|
|
SELECT a, a <-> '2001-02-13' FROM datetmp ORDER BY a <-> '2001-02-13' LIMIT 3;
|
|
|
|
a | ?column?
|
|
|
|
------------+----------
|
|
|
|
02-13-2001 | 0
|
|
|
|
02-11-2001 | 2
|
|
|
|
03-24-2001 | 39
|
|
|
|
(3 rows)
|
|
|
|
|
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
|
|
|
CREATE INDEX dateidx ON datetmp USING gist ( a );
|
|
|
|
SET enable_seqscan=off;
|
|
|
|
SELECT count(*) FROM datetmp WHERE a < '2001-02-13'::date;
|
|
|
|
count
|
|
|
|
-------
|
|
|
|
230
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
SELECT count(*) FROM datetmp WHERE a <= '2001-02-13'::date;
|
|
|
|
count
|
|
|
|
-------
|
|
|
|
231
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
SELECT count(*) FROM datetmp WHERE a = '2001-02-13'::date;
|
|
|
|
count
|
|
|
|
-------
|
|
|
|
1
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
SELECT count(*) FROM datetmp WHERE a >= '2001-02-13'::date;
|
|
|
|
count
|
|
|
|
-------
|
|
|
|
314
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
SELECT count(*) FROM datetmp WHERE a > '2001-02-13'::date;
|
|
|
|
count
|
|
|
|
-------
|
|
|
|
313
|
|
|
|
(1 row)
|
|
|
|
|
2011-03-03 03:43:24 +08:00
|
|
|
EXPLAIN (COSTS OFF)
|
|
|
|
SELECT a, a <-> '2001-02-13' FROM datetmp ORDER BY a <-> '2001-02-13' LIMIT 3;
|
|
|
|
QUERY PLAN
|
|
|
|
----------------------------------------------
|
|
|
|
Limit
|
|
|
|
-> Index Scan using dateidx on datetmp
|
|
|
|
Order By: (a <-> '02-13-2001'::date)
|
|
|
|
(3 rows)
|
|
|
|
|
|
|
|
SELECT a, a <-> '2001-02-13' FROM datetmp ORDER BY a <-> '2001-02-13' LIMIT 3;
|
|
|
|
a | ?column?
|
|
|
|
------------+----------
|
|
|
|
02-13-2001 | 0
|
|
|
|
02-11-2001 | 2
|
|
|
|
03-24-2001 | 39
|
|
|
|
(3 rows)
|
|
|
|
|