]> granicus.if.org Git - postgresql/commit
Fix instability in parallel regression tests.
authorTom Lane <tgl@sss.pgh.pa.us>
Thu, 25 Aug 2016 13:57:09 +0000 (09:57 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Thu, 25 Aug 2016 13:57:37 +0000 (09:57 -0400)
commit68bd9f795d49603941527d1bf357f5e74d164ece
tree2fa6ea0fee818dde2b4e98bfdc2693822d4f83c2
parentaaad96e4026e7bb3033ac0127510f2c60116a1b3
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>
src/test/regress/expected/case.out
src/test/regress/sql/case.sql