Add alternative expected output files for cs_CZ locale for btree_gist and
[PostgreSQL.git] / contrib / btree_gist / expected / int4.out
blobd4ac0e15135fdb7b4c4c77f11ec8663ddc50464c
1 -- int4 check
2 CREATE TABLE int4tmp (a int4);
3 \copy int4tmp from 'data/int2.data'
4 SET enable_seqscan=on;
5 SELECT count(*) FROM int4tmp WHERE a <  237;
6  count 
7 -------
8    297
9 (1 row)
11 SELECT count(*) FROM int4tmp WHERE a <= 237;
12  count 
13 -------
14    298
15 (1 row)
17 SELECT count(*) FROM int4tmp WHERE a  = 237;
18  count 
19 -------
20      1
21 (1 row)
23 SELECT count(*) FROM int4tmp WHERE a >= 237;
24  count 
25 -------
26    249
27 (1 row)
29 SELECT count(*) FROM int4tmp WHERE a >  237;
30  count 
31 -------
32    248
33 (1 row)
35 CREATE INDEX int4idx ON int4tmp USING gist ( a );
36 SET enable_seqscan=off;
37 SELECT count(*) FROM int4tmp WHERE a <  237::int4;
38  count 
39 -------
40    297
41 (1 row)
43 SELECT count(*) FROM int4tmp WHERE a <= 237::int4;
44  count 
45 -------
46    298
47 (1 row)
49 SELECT count(*) FROM int4tmp WHERE a  = 237::int4;
50  count 
51 -------
52      1
53 (1 row)
55 SELECT count(*) FROM int4tmp WHERE a >= 237::int4;
56  count 
57 -------
58    249
59 (1 row)
61 SELECT count(*) FROM int4tmp WHERE a >  237::int4;
62  count 
63 -------
64    248
65 (1 row)