Treat EOF like \n for line-counting purposes in ParseConfigFile,
[PostgreSQL.git] / contrib / btree_gin / expected / float8.out
bloba41d4f9f6bb052c1f13c0a6c7aa9141169e1c69c
1 set enable_seqscan=off;
2 CREATE TABLE test_float8 (
3         i float8
4 );
5 INSERT INTO test_float8 VALUES (-2),(-1),(0),(1),(2),(3);
6 CREATE INDEX idx_float8 ON test_float8 USING gin (i);
7 SELECT * FROM test_float8 WHERE i<1::float8 ORDER BY i;
8  i  
9 ----
10  -2
11  -1
12   0
13 (3 rows)
15 SELECT * FROM test_float8 WHERE i<=1::float8 ORDER BY i;
16  i  
17 ----
18  -2
19  -1
20   0
21   1
22 (4 rows)
24 SELECT * FROM test_float8 WHERE i=1::float8 ORDER BY i;
25  i 
26 ---
27  1
28 (1 row)
30 SELECT * FROM test_float8 WHERE i>=1::float8 ORDER BY i;
31  i 
32 ---
33  1
34  2
35  3
36 (3 rows)
38 SELECT * FROM test_float8 WHERE i>1::float8 ORDER BY i;
39  i 
40 ---
41  2
42  3
43 (2 rows)