pgsql: Repair unstable regression test.

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Repair unstable regression test.
Date: 2020-06-09 05:19:19
Message-ID: E1jiWfP-0004sJ-J8@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Repair unstable regression test.

Commit 0c882e52a tried to force table atest12 to have more-accurate-
than-default statistics; but transiently setting default_statistics_target
isn't enough for that, because autovacuum could come along and overwrite
the stats later. This evidently explains some intermittent buildfarm
failures we've seen since then. Repair by disabling autovac on this table.

Thanks to David Rowley for correctly diagnosing the cause.

Discussion: https://postgr.es/m/CA+hUKG+OUkQSOUTg=qo=S=fWa_tbm99i7rB7mfbHz1SYm4v-jQ@mail.gmail.com

Branch
------
REL_13_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/6df8fb391b0b98efc917b5cc43de77cba785864a

Modified Files
--------------
src/test/regress/expected/privileges.out | 3 ++-
src/test/regress/sql/privileges.sql | 3 ++-
2 files changed, 4 insertions(+), 2 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message David Rowley 2020-06-09 06:43:40 pgsql: Fix invalid function references in a few comments
Previous Message Jeff Davis 2020-06-09 04:12:05 pgsql: Fix HashAgg regression from choosing too many initial buckets.