aboutsummaryrefslogtreecommitdiff
path: root/contrib/btree_gist/expected/float8.out
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/btree_gist/expected/float8.out')
-rw-r--r--contrib/btree_gist/expected/float8.out7
1 files changed, 7 insertions, 0 deletions
diff --git a/contrib/btree_gist/expected/float8.out b/contrib/btree_gist/expected/float8.out
index ebd0ef3d689..4db0f7b8282 100644
--- a/contrib/btree_gist/expected/float8.out
+++ b/contrib/btree_gist/expected/float8.out
@@ -40,7 +40,14 @@ SELECT a, a <-> '-1890.0' FROM float8tmp ORDER BY a <-> '-1890.0' LIMIT 3;
-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