We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20e36c6 commit 9c3844bCopy full SHA for 9c3844b
contrib/seg/expected/seg_1.out
@@ -930,6 +930,7 @@ SELECT '1'::seg <@ '-1 .. 1'::seg AS bool;
930
CREATE TABLE test_seg (s seg);
931
\copy test_seg from 'data/test_seg.data'
932
CREATE INDEX test_seg_ix ON test_seg USING gist (s);
933
+SET enable_indexscan = false;
934
EXPLAIN (COSTS OFF)
935
SELECT count(*) FROM test_seg WHERE s @> '11..11.3';
936
QUERY PLAN
@@ -947,6 +948,7 @@ SELECT count(*) FROM test_seg WHERE s @> '11..11.3';
947
948
143
949
(1 row)
950
951
+RESET enable_indexscan;
952
SET enable_bitmapscan = false;
953
954
0 commit comments