Fix xslt_process() to ensure that it inserts a NULL terminator after the
[PostgreSQL.git] / contrib / btree_gist / expected / int8.out
blob1da484525b511e6c8081f80e1479258d10e65e67
1 -- int8 check
2 CREATE TABLE int8tmp (a int8);
3 \copy int8tmp from 'data/int8.data'
4 SET enable_seqscan=on;
5 SELECT count(*) FROM int8tmp WHERE a <  464571291354841;
6  count 
7 -------
8    276
9 (1 row)
11 SELECT count(*) FROM int8tmp WHERE a <= 464571291354841;
12  count 
13 -------
14    277
15 (1 row)
17 SELECT count(*) FROM int8tmp WHERE a  = 464571291354841;
18  count 
19 -------
20      1
21 (1 row)
23 SELECT count(*) FROM int8tmp WHERE a >= 464571291354841;
24  count 
25 -------
26    271
27 (1 row)
29 SELECT count(*) FROM int8tmp WHERE a >  464571291354841;
30  count 
31 -------
32    270
33 (1 row)
35 CREATE INDEX int8idx ON int8tmp USING gist ( a );
36 SET enable_seqscan=off;
37 SELECT count(*) FROM int8tmp WHERE a <  464571291354841::int8;
38  count 
39 -------
40    276
41 (1 row)
43 SELECT count(*) FROM int8tmp WHERE a <= 464571291354841::int8;
44  count 
45 -------
46    277
47 (1 row)
49 SELECT count(*) FROM int8tmp WHERE a  = 464571291354841::int8;
50  count 
51 -------
52      1
53 (1 row)
55 SELECT count(*) FROM int8tmp WHERE a >= 464571291354841::int8;
56  count 
57 -------
58    271
59 (1 row)
61 SELECT count(*) FROM int8tmp WHERE a >  464571291354841::int8;
62  count 
63 -------
64    270
65 (1 row)