pgsql: Modify create_index regression test to avoid intermittent failur

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Modify create_index regression test to avoid intermittent failur
Дата
Msg-id E1SNEuC-0002Ba-Lk@gemulon.postgresql.org
обсуждение исходный текст
Список 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 по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: pgsql: Fix planner's handling of RETURNING lists in writable CTEs.
Следующее
От: Peter Eisentraut
Дата:
Сообщение: pgsql: psql: Tab completion updates