]> granicus.if.org Git - postgresql/commit
Acquire properly session-level lock on new index in REINDEX CONCURRENTLY
authorMichael Paquier <michael@paquier.xyz>
Wed, 23 Oct 2019 06:05:09 +0000 (15:05 +0900)
committerMichael Paquier <michael@paquier.xyz>
Wed, 23 Oct 2019 06:05:09 +0000 (15:05 +0900)
commit7668d48477edc3bc8d6990ac3d3bd79e327e2719
treeb4befdefccc2e61ab1c0171ccccc29bb82ff2fac
parenta6a95d4f382b67bc80b63e4769dfb240bafd9aa7
Acquire properly session-level lock on new index in REINDEX CONCURRENTLY

In the first transaction run for REINDEX CONCURRENTLY, a thinko in the
existing logic caused two session locks to be taken on the old index,
causing the session lock on the newly-created index to be missed.  This
made possible concurrent DDL commands (like ALTER INDEX) on the new
index while REINDEX CONCURRENTLY was processing from the point where the
first internal transaction committed.

This issue has been discovered while digging into another bug.

Author: Michael Paquier
Discussion: https://postgr.es/m/20191021074323.GB1869@paquier.xyz
Backpatch-through: 12
src/backend/commands/indexcmds.c