@@ -145,7 +145,6 @@ SELECT id FROM test_int8_o WHERE t @@ 'wr&qh' AND id >= 400::int8 ORDER BY id;
145145
146146RESET enable_indexscan;
147147RESET enable_indexonlyscan;
148- RESET enable_bitmapscan;
149148SET enable_seqscan = off;
150149EXPLAIN (costs off)
151150SELECT 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;
258257CREATE INDEX test_int8_a_idx ON test_int8_a USING rum
259258 (t rum_tsvector_addon_ops, id)
260259 WITH (attach = 'id', to = 't', order_by_attach='t');
261- SET enable_bitmapscan=OFF;
262260EXPLAIN (costs off)
263261SELECT count(*) FROM test_int8_a WHERE id < 400::int8;
264262 QUERY PLAN
@@ -448,7 +446,6 @@ SELECT id FROM test_int8_h_o WHERE t @@ 'wr&qh' AND id >= 400::int8 ORDER BY id
448446
449447RESET enable_indexscan;
450448RESET enable_indexonlyscan;
451- RESET enable_bitmapscan;
452449SET enable_seqscan = off;
453450EXPLAIN (costs off)
454451SELECT 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;
561558CREATE INDEX test_int8_h_a_idx ON test_int8_h_a USING rum
562559 (t rum_tsvector_hash_addon_ops, id)
563560 WITH (attach = 'id', to = 't', order_by_attach='t');
564- SET enable_bitmapscan=OFF;
565561EXPLAIN (costs off)
566562SELECT count(*) FROM test_int8_h_a WHERE id < 400::int8;
567563 QUERY PLAN
0 commit comments