aboutsummaryrefslogtreecommitdiff
path: root/contrib/intarray/expected/_int.out
blob: b38102aa051aa7566e3874bbdb9f7806aede55bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--
-- 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)