2001-01-12 08:16:26 +08:00
|
|
|
--
|
|
|
|
-- first, define the datatype. Turn off echoing so that expected file
|
|
|
|
-- does not depend on contents of seg.sql.
|
|
|
|
--
|
|
|
|
\set ECHO none
|
|
|
|
CREATE TABLE test__int( a int[] );
|
|
|
|
\copy test__int from 'data/test__int.data'
|
|
|
|
SELECT count(*) from test__int WHERE a && '{23,50}';
|
|
|
|
count
|
|
|
|
-------
|
2001-03-20 11:08:12 +08:00
|
|
|
403
|
2001-01-12 08:16:26 +08:00
|
|
|
(1 row)
|
|
|
|
|
|
|
|
SELECT count(*) from test__int WHERE a @ '{23,50}';
|
|
|
|
count
|
|
|
|
-------
|
|
|
|
12
|
|
|
|
(1 row)
|
|
|
|
|
2001-03-18 05:59:42 +08:00
|
|
|
CREATE INDEX text_idx on test__int using gist ( a gist__int_ops ) with ( islossy );
|
|
|
|
SELECT count(*) from test__int WHERE a && '{23,50}';
|
|
|
|
count
|
|
|
|
-------
|
2001-03-20 11:08:12 +08:00
|
|
|
403
|
2001-03-18 05:59:42 +08:00
|
|
|
(1 row)
|
|
|
|
|
|
|
|
SELECT count(*) from test__int WHERE a @ '{23,50}';
|
|
|
|
count
|
|
|
|
-------
|
|
|
|
12
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
drop index text_idx;
|
|
|
|
CREATE INDEX text_idx on test__int using gist ( a gist__intbig_ops ) with ( islossy );
|
|
|
|
SELECT count(*) from test__int WHERE a && '{23,50}';
|
|
|
|
count
|
|
|
|
-------
|
2001-03-20 11:08:12 +08:00
|
|
|
403
|
2001-03-18 05:59:42 +08:00
|
|
|
(1 row)
|
|
|
|
|
|
|
|
SELECT count(*) from test__int WHERE a @ '{23,50}';
|
|
|
|
count
|
|
|
|
-------
|
|
|
|
12
|
|
|
|
(1 row)
|
|
|
|
|