summaryrefslogtreecommitdiff
path: root/contrib/btree_gist/expected/float4.out
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/btree_gist/expected/float4.out')
-rw-r--r--contrib/btree_gist/expected/float4.out7
1 files changed, 7 insertions, 0 deletions
diff --git a/contrib/btree_gist/expected/float4.out b/contrib/btree_gist/expected/float4.out
index dfe732049e6..5f4f1aa4ec5 100644
--- a/contrib/btree_gist/expected/float4.out
+++ b/contrib/btree_gist/expected/float4.out
@@ -40,7 +40,14 @@ SELECT a, a <-> '-179.0' FROM float4tmp ORDER BY a <-> '-179.0' LIMIT 3;
-158.17741 | 20.822586
(3 rows)
+SET client_min_messages = DEBUG1;
CREATE INDEX float4idx ON float4tmp USING gist ( a );
+DEBUG: building index "float4idx" on table "float4tmp" serially
+DEBUG: using sorted GiST build
+CREATE INDEX float4idx_b ON float4tmp USING gist ( a ) WITH (buffering=on);
+DEBUG: building index "float4idx_b" on table "float4tmp" serially
+DROP INDEX float4idx_b;
+RESET client_min_messages;
SET enable_seqscan=off;
SELECT count(*) FROM float4tmp WHERE a < -179.0::float4;
count