@@ -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;
@@ -510,7 +507,6 @@ SELECT id, id |=> 400 FROM test_int8_h_o WHERE t @@ 'wr&qh' ORDER BY id |=> 400
510
507
458 | 58
511
508
(5 rows)
512
509
513
- SET enable_bitmapscan=OFF;
514
510
EXPLAIN (costs off)
515
511
SELECT id FROM test_int8_h_o WHERE t @@ 'wr&qh' AND id <= 400::int8 ORDER BY id;
516
512
QUERY PLAN
0 commit comments