aboutsummaryrefslogtreecommitdiff
path: root/contrib/btree_gist/expected/int2.out
blob: a82819c26a19c997f2ede59b1ae8583507507543 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
-- int2 check
CREATE TABLE int2tmp (a int2);
\copy int2tmp from 'data/int2.data'
SET enable_seqscan=on;
SELECT count(*) FROM int2tmp WHERE a <  237;
 count 
-------
   297
(1 row)

SELECT count(*) FROM int2tmp WHERE a <= 237;
 count 
-------
   298
(1 row)

SELECT count(*) FROM int2tmp WHERE a  = 237;
 count 
-------
     1
(1 row)

SELECT count(*) FROM int2tmp WHERE a >= 237;
 count 
-------
   249
(1 row)

SELECT count(*) FROM int2tmp WHERE a >  237;
 count 
-------
   248
(1 row)

CREATE INDEX int2idx ON int2tmp USING gist ( a );
SET enable_seqscan=off;
SELECT count(*) FROM int2tmp WHERE a <  237::int2;
 count 
-------
   297
(1 row)

SELECT count(*) FROM int2tmp WHERE a <= 237::int2;
 count 
-------
   298
(1 row)

SELECT count(*) FROM int2tmp WHERE a  = 237::int2;
 count 
-------
     1
(1 row)

SELECT count(*) FROM int2tmp WHERE a >= 237::int2;
 count 
-------
   249
(1 row)

SELECT count(*) FROM int2tmp WHERE a >  237::int2;
 count 
-------
   248
(1 row)