@@ -145,7 +145,6 @@ SELECT id FROM test_int8_o WHERE t @@ 'wr&qh' AND id >= 400::int8 ORDER BY id;
145
145
146
146
RESET enable_indexscan;
147
147
RESET enable_indexonlyscan;
148
- RESET enable_bitmapscan;
149
148
SET enable_seqscan = off;
150
149
EXPLAIN (costs off)
151
150
SELECT id, id <=> 400 FROM test_int8_o WHERE t @@ 'wr&qh' ORDER BY id <=> 400 LIMIT 5;
@@ -258,7 +257,6 @@ CREATE TABLE test_int8_a AS SELECT id::int8, t FROM tsts;
258
257
CREATE INDEX test_int8_a_idx ON test_int8_a USING rum
259
258
(t rum_tsvector_addon_ops, id)
260
259
WITH (attach = 'id', to = 't', order_by_attach='t');
261
- SET enable_bitmapscan=OFF;
262
260
EXPLAIN (costs off)
263
261
SELECT count(*) FROM test_int8_a WHERE id < 400::int8;
264
262
QUERY PLAN
@@ -448,7 +446,6 @@ SELECT id FROM test_int8_h_o WHERE t @@ 'wr&qh' AND id >= 400::int8 ORDER BY id
448
446
449
447
RESET enable_indexscan;
450
448
RESET enable_indexonlyscan;
451
- RESET enable_bitmapscan;
452
449
SET enable_seqscan = off;
453
450
EXPLAIN (costs off)
454
451
SELECT id, id <=> 400 FROM test_int8_h_o WHERE t @@ 'wr&qh' ORDER BY id <=> 400 LIMIT 5;
@@ -561,7 +558,6 @@ CREATE TABLE test_int8_h_a AS SELECT id::int8, t FROM tsts;
561
558
CREATE INDEX test_int8_h_a_idx ON test_int8_h_a USING rum
562
559
(t rum_tsvector_hash_addon_ops, id)
563
560
WITH (attach = 'id', to = 't', order_by_attach='t');
564
- SET enable_bitmapscan=OFF;
565
561
EXPLAIN (costs off)
566
562
SELECT count(*) FROM test_int8_h_a WHERE id < 400::int8;
567
563
QUERY PLAN
0 commit comments