pgsql: Modify create_index regression test to avoid intermittent failur - Mailing list pgsql-committers

From Tom Lane
Subject pgsql: Modify create_index regression test to avoid intermittent failur
Date
Msg-id E1SNEuC-0002Ba-Lk@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Modify create_index regression test to avoid intermittent failures.

We have been seeing intermittent buildfarm failures due to a query
sometimes not using an index-only scan plan, because a background
auto-ANALYZE prevented the table's all-visible bits from being set
immediately, thereby causing the estimated cost of an index-only scan
to go up considerably.  Adjust the test case so that a bitmap index scan is
preferred instead, which serves equally well for the purpose the test case
is actually meant for.  (Of course, it would be better to eliminate the
interference from auto-ANALYZE, but I see no low-risk way to do that,
so any such fix will have to be left for 9.3 or later.)

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/d6d5f67b5b98b1685f9158e9d00a726afb2ae789

Modified Files
--------------
src/test/regress/expected/create_index.out |   22 ++++++++++++----------
src/test/regress/sql/create_index.sql      |    6 +++---
2 files changed, 15 insertions(+), 13 deletions(-)


pgsql-committers by date:

Previous
From: Tom Lane
Date:
Subject: pgsql: Fix planner's handling of RETURNING lists in writable CTEs.
Next
From: Peter Eisentraut
Date:
Subject: pgsql: psql: Tab completion updates