[COMMITTERS] pgsql: Make new regression test case parallel-safe,and improve its out - Mailing list pgsql-committers

From Tom Lane
Subject [COMMITTERS] pgsql: Make new regression test case parallel-safe,and improve its out
Date
Msg-id E1dkw78-0001Qu-DG@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Make new regression test case parallel-safe, and improve its output.

The test case added by commit 1f6d515a6 fails on buildfarm members that
have force_parallel_mode turned on, because we currently don't report sort
performance details from worker processes back to the master.  To fix that,
just make the test table be temp rather than regular; that's a good idea
anyway to forestall any possible interference from auto-analyze.
(The restriction that workers can't access temp tables might go away
someday, but almost certainly not before the other thing gets fixed.)

Also, improve the test so that we retain as much as possible of the
EXPLAIN ANALYZE output.  This aids debugging failures, and might also
expose problems that the preceding version masked.

Discussion: http://postgr.es/m/CADE5jYLuugnEEUsyW6Q_4mZFYTxHxaVCQmGAsF0yiY8ZDggi-w@mail.gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/1177ab1dabf72bafee8f19d904cee3a299f25892

Modified Files
--------------
src/test/regress/expected/subselect.out | 77 ++++++++++++++++-----------------
src/test/regress/sql/subselect.sql      | 67 +++++++++++++---------------
2 files changed, 66 insertions(+), 78 deletions(-)


pgsql-committers by date:

Previous
From: Peter Eisentraut
Date:
Subject: Re: [COMMITTERS] pgsql: Improve plural handling in error message
Next
From: Peter Eisentraut
Date:
Subject: [COMMITTERS] pgsql: Increase SCRAM salt length