aboutsummaryrefslogtreecommitdiff
path: root/contrib/btree_gist/expected/int8.out
blob: 1da484525b511e6c8081f80e1479258d10e65e67 (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
-- int8 check
CREATE TABLE int8tmp (a int8);
\copy int8tmp from 'data/int8.data'
SET enable_seqscan=on;
SELECT count(*) FROM int8tmp WHERE a <  464571291354841;
 count 
-------
   276
(1 row)

SELECT count(*) FROM int8tmp WHERE a <= 464571291354841;
 count 
-------
   277
(1 row)

SELECT count(*) FROM int8tmp WHERE a  = 464571291354841;
 count 
-------
     1
(1 row)

SELECT count(*) FROM int8tmp WHERE a >= 464571291354841;
 count 
-------
   271
(1 row)

SELECT count(*) FROM int8tmp WHERE a >  464571291354841;
 count 
-------
   270
(1 row)

CREATE INDEX int8idx ON int8tmp USING gist ( a );
SET enable_seqscan=off;
SELECT count(*) FROM int8tmp WHERE a <  464571291354841::int8;
 count 
-------
   276
(1 row)

SELECT count(*) FROM int8tmp WHERE a <= 464571291354841::int8;
 count 
-------
   277
(1 row)

SELECT count(*) FROM int8tmp WHERE a  = 464571291354841::int8;
 count 
-------
     1
(1 row)

SELECT count(*) FROM int8tmp WHERE a >= 464571291354841::int8;
 count 
-------
   271
(1 row)

SELECT count(*) FROM int8tmp WHERE a >  464571291354841::int8;
 count 
-------
   270
(1 row)