Disable parallel query in psql error-with-FETCH_COUNT test.
authorTom Lane <tgl@sss.pgh.pa.us>
Sun, 7 Apr 2024 01:49:24 +0000 (21:49 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Sun, 7 Apr 2024 01:49:24 +0000 (21:49 -0400)
commitbeb012b42f5c32f578661fc1b033ca25905b27d6
treed14bbc9c295851afbc2e11e2cf33bf17e4aae756
parent90f5178211cd63ac16fb8c8b2fe43d53d2854da1
Disable parallel query in psql error-with-FETCH_COUNT test.

The buildfarm members using debug_parallel_query = regress are mostly
unhappy with this test.  I guess what is happening is that rows
generated by a parallel worker are buffered, and might or might not
get to the leader before the expected error occurs.  We did not see
any variability in the old version of this test because each FETCH
would succeed or fail atomically, leading to a predictable number of
rows emitted before failure.  I don't find this to be a bug, just
unspecified behavior, so let's disable parallel query for this one
test case to make the results stable.
src/test/regress/expected/psql.out
src/test/regress/sql/psql.sql