You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
postgres/contrib/btree_gist/expected/float8.out

98 lines
2.2 KiB

-- float8 check
CREATE TABLE float8tmp (a float8);
\copy float8tmp from 'data/float8.data'
SET enable_seqscan=on;
SELECT count(*) FROM float8tmp WHERE a < -1890.0;
count
-------
237
(1 row)
SELECT count(*) FROM float8tmp WHERE a <= -1890.0;
count
-------
238
(1 row)
SELECT count(*) FROM float8tmp WHERE a = -1890.0;
count
-------
1
(1 row)
SELECT count(*) FROM float8tmp WHERE a >= -1890.0;
count
-------
307
(1 row)
SELECT count(*) FROM float8tmp WHERE a > -1890.0;
count
-------
306
(1 row)
SELECT a, a <-> '-1890.0' FROM float8tmp ORDER BY a <-> '-1890.0' LIMIT 3;
a | ?column?
--------------+--------------------
-1890 | 0
-2003.634512 | 113.63451200000009
-1769.73634 | 120.26366000000007
(3 rows)
SET client_min_messages = DEBUG1;
CREATE INDEX float8idx ON float8tmp USING gist ( a );
DEBUG: building index "float8idx" on table "float8tmp" serially
DEBUG: using sorted GiST build
CREATE INDEX float8idx_b ON float8tmp USING gist ( a ) WITH (buffering=on);
DEBUG: building index "float8idx_b" on table "float8tmp" serially
DROP INDEX float8idx_b;
RESET client_min_messages;
SET enable_seqscan=off;
SELECT count(*) FROM float8tmp WHERE a < -1890.0::float8;
count
-------
237
(1 row)
SELECT count(*) FROM float8tmp WHERE a <= -1890.0::float8;
count
-------
238
(1 row)
SELECT count(*) FROM float8tmp WHERE a = -1890.0::float8;
count
-------
1
(1 row)
SELECT count(*) FROM float8tmp WHERE a >= -1890.0::float8;
count
-------
307
(1 row)
SELECT count(*) FROM float8tmp WHERE a > -1890.0::float8;
count
-------
306
(1 row)
EXPLAIN (COSTS OFF)
SELECT a, a <-> '-1890.0' FROM float8tmp ORDER BY a <-> '-1890.0' LIMIT 3;
QUERY PLAN
-----------------------------------------------------
Limit
-> Index Only Scan using float8idx on float8tmp
Order By: (a <-> '-1890'::double precision)
(3 rows)
SELECT a, a <-> '-1890.0' FROM float8tmp ORDER BY a <-> '-1890.0' LIMIT 3;
a | ?column?
--------------+--------------------
-1890 | 0
-2003.634512 | 113.63451200000009
-1769.73634 | 120.26366000000007
(3 rows)