Skip to content

Commit 9c3844b

Browse files
committed
Fix contrib/seg regression test in v11.
In 20e36c6, I neglected to update seg_1.out (which doesn't exist in newer branches). Per buildfarm, via Andrew Dunstan. Discussion: https://postgr.es/m/7611b36f-7d57-5234-ad68-7d25a81e0f13@dunslane.net
1 parent 20e36c6 commit 9c3844b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

contrib/seg/expected/seg_1.out

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -930,6 +930,7 @@ SELECT '1'::seg <@ '-1 .. 1'::seg AS bool;
930930
CREATE TABLE test_seg (s seg);
931931
\copy test_seg from 'data/test_seg.data'
932932
CREATE INDEX test_seg_ix ON test_seg USING gist (s);
933+
SET enable_indexscan = false;
933934
EXPLAIN (COSTS OFF)
934935
SELECT count(*) FROM test_seg WHERE s @> '11..11.3';
935936
QUERY PLAN
@@ -947,6 +948,7 @@ SELECT count(*) FROM test_seg WHERE s @> '11..11.3';
947948
143
948949
(1 row)
949950

951+
RESET enable_indexscan;
950952
SET enable_bitmapscan = false;
951953
EXPLAIN (COSTS OFF)
952954
SELECT count(*) FROM test_seg WHERE s @> '11..11.3';

0 commit comments

Comments
 (0)