mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
20 lines
382 B
Plaintext
20 lines
382 B
Plaintext
|
--
|
||
|
-- 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
|
||
|
-------
|
||
|
345
|
||
|
(1 row)
|
||
|
|
||
|
SELECT count(*) from test__int WHERE a @ '{23,50}';
|
||
|
count
|
||
|
-------
|
||
|
12
|
||
|
(1 row)
|
||
|
|