diff --git a/src/test/regress/expected/create_index.out b/src/test/regress/expected/create_index.out index 36609c5bbf..4411d250a7 100644 --- a/src/test/regress/expected/create_index.out +++ b/src/test/regress/expected/create_index.out @@ -2605,21 +2605,23 @@ DROP TABLE onek_with_null; CREATE TABLE dupindexcols AS SELECT unique1 as id, stringu2::text as f1 FROM tenk1; CREATE INDEX dupindexcols_i ON dupindexcols (f1, id, f1 text_pattern_ops); -VACUUM ANALYZE dupindexcols; +ANALYZE dupindexcols; EXPLAIN (COSTS OFF) SELECT count(*) FROM dupindexcols - WHERE f1 > 'MA' and id < 1000 and f1 ~<~ 'YX'; - QUERY PLAN ---------------------------------------------------------------------------------- + WHERE f1 > 'WA' and id < 1000 and f1 ~<~ 'YX'; + QUERY PLAN +--------------------------------------------------------------------------------------- Aggregate - -> Index Only Scan using dupindexcols_i on dupindexcols - Index Cond: ((f1 > 'MA'::text) AND (id < 1000) AND (f1 ~<~ 'YX'::text)) -(3 rows) + -> Bitmap Heap Scan on dupindexcols + Recheck Cond: ((f1 > 'WA'::text) AND (id < 1000) AND (f1 ~<~ 'YX'::text)) + -> Bitmap Index Scan on dupindexcols_i + Index Cond: ((f1 > 'WA'::text) AND (id < 1000) AND (f1 ~<~ 'YX'::text)) +(5 rows) SELECT count(*) FROM dupindexcols - WHERE f1 > 'MA' and id < 1000 and f1 ~<~ 'YX'; + WHERE f1 > 'WA' and id < 1000 and f1 ~<~ 'YX'; count ------- - 497 + 97 (1 row) diff --git a/src/test/regress/sql/create_index.sql b/src/test/regress/sql/create_index.sql index deb1989726..62d05d0605 100644 --- a/src/test/regress/sql/create_index.sql +++ b/src/test/regress/sql/create_index.sql @@ -865,10 +865,10 @@ DROP TABLE onek_with_null; CREATE TABLE dupindexcols AS SELECT unique1 as id, stringu2::text as f1 FROM tenk1; CREATE INDEX dupindexcols_i ON dupindexcols (f1, id, f1 text_pattern_ops); -VACUUM ANALYZE dupindexcols; +ANALYZE dupindexcols; EXPLAIN (COSTS OFF) SELECT count(*) FROM dupindexcols - WHERE f1 > 'MA' and id < 1000 and f1 ~<~ 'YX'; + WHERE f1 > 'WA' and id < 1000 and f1 ~<~ 'YX'; SELECT count(*) FROM dupindexcols - WHERE f1 > 'MA' and id < 1000 and f1 ~<~ 'YX'; + WHERE f1 > 'WA' and id < 1000 and f1 ~<~ 'YX';