openGauss-server/contrib/btree_gin/expected/date.out

53 lines
1.1 KiB
Plaintext

SET DATESTYLE=ISO;
set enable_seqscan=off;
CREATE TABLE test_date (
i date
);
INSERT INTO test_date VALUES
( '2004-10-23' ),
( '2004-10-24' ),
( '2004-10-25' ),
( '2004-10-26' ),
( '2004-10-27' ),
( '2004-10-28' )
;
CREATE INDEX idx_date ON test_date USING gin (i);
SELECT * FROM test_date WHERE i<'2004-10-26'::date ORDER BY i;
i
---------------------
2004-10-23 00:00:00
2004-10-24 00:00:00
2004-10-25 00:00:00
(3 rows)
SELECT * FROM test_date WHERE i<='2004-10-26'::date ORDER BY i;
i
---------------------
2004-10-23 00:00:00
2004-10-24 00:00:00
2004-10-25 00:00:00
2004-10-26 00:00:00
(4 rows)
SELECT * FROM test_date WHERE i='2004-10-26'::date ORDER BY i;
i
---------------------
2004-10-26 00:00:00
(1 row)
SELECT * FROM test_date WHERE i>='2004-10-26'::date ORDER BY i;
i
---------------------
2004-10-26 00:00:00
2004-10-27 00:00:00
2004-10-28 00:00:00
(3 rows)
SELECT * FROM test_date WHERE i>'2004-10-26'::date ORDER BY i;
i
---------------------
2004-10-27 00:00:00
2004-10-28 00:00:00
(2 rows)