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
|
|
|
|
\i _int.sql
|
|
|
|
\set ECHO all
|
|
|
|
|
2001-09-23 12:16:16 +08:00
|
|
|
--test query_int
|
|
|
|
select '1'::query_int;
|
|
|
|
select ' 1'::query_int;
|
|
|
|
select '1 '::query_int;
|
|
|
|
select ' 1 '::query_int;
|
|
|
|
select ' ! 1 '::query_int;
|
|
|
|
select '!1'::query_int;
|
|
|
|
select '1|2'::query_int;
|
|
|
|
select '1|!2'::query_int;
|
|
|
|
select '!1|2'::query_int;
|
|
|
|
select '!1|!2'::query_int;
|
|
|
|
select '!(!1|!2)'::query_int;
|
|
|
|
select '!(!1|2)'::query_int;
|
|
|
|
select '!(1|!2)'::query_int;
|
|
|
|
select '!(1|2)'::query_int;
|
|
|
|
select '1&2'::query_int;
|
|
|
|
select '!1&2'::query_int;
|
|
|
|
select '1&!2'::query_int;
|
|
|
|
select '!1&!2'::query_int;
|
|
|
|
select '(1&2)'::query_int;
|
|
|
|
select '1&(2)'::query_int;
|
|
|
|
select '!(1)&2'::query_int;
|
|
|
|
select '!(1&2)'::query_int;
|
|
|
|
select '1|2&3'::query_int;
|
|
|
|
select '1|(2&3)'::query_int;
|
|
|
|
select '(1|2)&3'::query_int;
|
|
|
|
select '1|2&!3'::query_int;
|
|
|
|
select '1|!2&3'::query_int;
|
|
|
|
select '!1|2&3'::query_int;
|
|
|
|
select '!1|(2&3)'::query_int;
|
|
|
|
select '!(1|2)&3'::query_int;
|
|
|
|
select '(!1|2)&3'::query_int;
|
|
|
|
select '1|(2|(4|(5|6)))'::query_int;
|
|
|
|
select '1|2|4|5|6'::query_int;
|
|
|
|
select '1&(2&(4&(5&6)))'::query_int;
|
|
|
|
select '1&2&4&5&6'::query_int;
|
|
|
|
select '1&(2&(4&(5|6)))'::query_int;
|
|
|
|
select '1&(2&(4&(5|!6)))'::query_int;
|
|
|
|
|
|
|
|
|
2001-01-12 08:16:26 +08:00
|
|
|
CREATE TABLE test__int( a int[] );
|
|
|
|
|
|
|
|
\copy test__int from 'data/test__int.data'
|
|
|
|
|
|
|
|
SELECT count(*) from test__int WHERE a && '{23,50}';
|
2001-09-23 12:16:16 +08:00
|
|
|
SELECT count(*) from test__int WHERE a @@ '23|50';
|
2001-01-12 08:16:26 +08:00
|
|
|
SELECT count(*) from test__int WHERE a @ '{23,50}';
|
2001-09-23 12:16:16 +08:00
|
|
|
SELECT count(*) from test__int WHERE a @@ '23&50';
|
|
|
|
SELECT count(*) from test__int WHERE a @ '{20,23}';
|
|
|
|
SELECT count(*) from test__int WHERE a @@ '50&68';
|
|
|
|
SELECT count(*) from test__int WHERE a @ '{20,23}' or a @ '{50,68}';
|
|
|
|
SELECT count(*) from test__int WHERE a @@ '(20&23)|(50&68)';
|
2001-01-12 08:16:26 +08:00
|
|
|
|
2001-08-22 00:36:06 +08:00
|
|
|
CREATE INDEX text_idx on test__int using gist ( a gist__int_ops );
|
2001-03-18 05:59:42 +08:00
|
|
|
|
|
|
|
SELECT count(*) from test__int WHERE a && '{23,50}';
|
2001-09-23 12:16:16 +08:00
|
|
|
SELECT count(*) from test__int WHERE a @@ '23|50';
|
2001-03-18 05:59:42 +08:00
|
|
|
SELECT count(*) from test__int WHERE a @ '{23,50}';
|
2001-09-23 12:16:16 +08:00
|
|
|
SELECT count(*) from test__int WHERE a @@ '23&50';
|
|
|
|
SELECT count(*) from test__int WHERE a @ '{20,23}';
|
|
|
|
SELECT count(*) from test__int WHERE a @@ '50&68';
|
|
|
|
SELECT count(*) from test__int WHERE a @ '{20,23}' or a @ '{50,68}';
|
|
|
|
SELECT count(*) from test__int WHERE a @@ '(20&23)|(50&68)';
|
2001-03-18 05:59:42 +08:00
|
|
|
|
|
|
|
drop index text_idx;
|
2001-08-22 00:36:06 +08:00
|
|
|
CREATE INDEX text_idx on test__int using gist ( a gist__intbig_ops );
|
2001-03-18 05:59:42 +08:00
|
|
|
|
|
|
|
SELECT count(*) from test__int WHERE a && '{23,50}';
|
2001-09-23 12:16:16 +08:00
|
|
|
SELECT count(*) from test__int WHERE a @@ '23|50';
|
2001-03-18 05:59:42 +08:00
|
|
|
SELECT count(*) from test__int WHERE a @ '{23,50}';
|
2001-09-23 12:16:16 +08:00
|
|
|
SELECT count(*) from test__int WHERE a @@ '23&50';
|
|
|
|
SELECT count(*) from test__int WHERE a @ '{20,23}';
|
|
|
|
SELECT count(*) from test__int WHERE a @@ '50&68';
|
|
|
|
SELECT count(*) from test__int WHERE a @ '{20,23}' or a @ '{50,68}';
|
|
|
|
SELECT count(*) from test__int WHERE a @@ '(20&23)|(50&68)';
|
2001-03-18 05:59:42 +08:00
|
|
|
|