Fix instability in parallel regression tests.

Tom Lane <tgl@sss.pgh.pa.us>

Commit: da14d46705b31d2313ab97706008cfd909fc8627
Author: Tom Lane <tgl@sss.pgh.pa.us>
Date: 2016-08-25T13:57:41Z
Releases: 9.2.19
Fix instability in parallel regression tests.

Commit f0c7b789a added a test case in case.sql that creates and then drops
both an '=' operator and the type it's for.  Given the right timing, that
can cause a "cache lookup failed for type" failure in concurrent sessions,
which see the '=' operator as a potential match for '=' in a query, but
then the type is gone by the time they inquire into its properties.
It might be nice to make that behavior more robust someday, but as a
back-patchable solution, adjust the new test case so that the operator
is never visible to other sessions.  Like the previous commit, back-patch
to all supported branches.

Discussion: <5983.1471371667@sss.pgh.pa.us>

Files

PathChange+/−
src/test/regress/expected/case.out modified +4 −5
src/test/regress/sql/case.sql modified +6 −5