Fix parallel amvacuumcleanup safety bug.
authorPeter Geoghegan <pg@bowt.ie>
Wed, 3 Nov 2021 02:52:10 +0000 (19:52 -0700)
committerPeter Geoghegan <pg@bowt.ie>
Wed, 3 Nov 2021 02:52:10 +0000 (19:52 -0700)
commitf6162c020c880189255e77e33bde74a2b951eaae
treed2f6bef8c2b493f4f4a6b538c21eca5fda96fca1
parent61a86ed55ba169044b9a692542bad1b05341147b
Fix parallel amvacuumcleanup safety bug.

Commit b4af70cb inverted the return value of the function
parallel_processing_is_safe(), but missed the amvacuumcleanup test.
Index AMs that don't support parallel cleanup at all were affected.

The practical consequences of this bug were not very serious.  Hash
indexes are affected, but since they just return the number of blocks
during hashvacuumcleanup anyway, it can't have had much impact.

Author: Masahiko Sawada <sawada.mshk@gmail.com>
Discussion: https://postgr.es/m/CAD21AoA-Em+aeVPmBbL_s1V-ghsJQSxYL-i3JP8nTfPiD1wjKw@mail.gmail.com
Backpatch: 14-, where commit b4af70cb appears.
src/backend/access/heap/vacuumlazy.c