
Commit 16fa9b2b30 introduced a faster way to build GiST indexes, by sorting all the data. This commit adds the sortsupport functions needed to make use of that feature for btree_gist. Author: Andrey Borodin Discussion: https://www.postgresql.org/message-id/2F3F7265-0D22-44DB-AD71-8554C743D943@yandex-team.ru
99 lines
2.2 KiB
Plaintext
99 lines
2.2 KiB
Plaintext
-- 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)
|
|
|