Avoid failure to open dropped detached partition
authorAlvaro Herrera <[email protected]>
Mon, 19 Aug 2024 20:09:10 +0000 (16:09 -0400)
committerAlvaro Herrera <[email protected]>
Mon, 19 Aug 2024 20:09:10 +0000 (16:09 -0400)
commit3ad4c8615a7616c0d3f6bf6fe9bdd22d43c95813
treeaa6f3165333b78160f33887af8ada8750189ac0d
parent3acbe198e2ad0f7d790d04f87c662ee26738536a
Avoid failure to open dropped detached partition

When a partition is detached and immediately dropped, a prepared
statement could try to compute a new partition descriptor that includes
it.  This leads to this kind of error:
ERROR:  could not open relation with OID 457639

Avoid this by skipping the partition in expand_partitioned_rtentry if it
doesn't exist.

Noted by me while investigating bug #18559.  Kuntal Gosh helped to
identify the exact failure.

Backpatch to 14, where DETACH CONCURRENTLY was introduced.

Author: Álvaro Herrera <[email protected]>
Reviewed-by: Kuntal Ghosh <[email protected]>
Reviewed-by: Junwang Zhao <[email protected]>
Discussion: https://postgr.es/m/202408122233[email protected]
src/backend/optimizer/util/inherit.c