Avoid failure to open dropped detached partition
authorAlvaro Herrera
Mon, 19 Aug 2024 20:09:10 +0000 (16:09 -0400)
committerAlvaro Herrera
Mon, 19 Aug 2024 20:09:10 +0000 (16:09 -0400)
commit52f3de874bbeaf16b3ae2efb505c1117be8355cc
treeeee572634071ce0419bdd427423128b89e4fa8eb
parent0d06a7eac4b23cc7b8fd4568d8623a6023646f63
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 
Reviewed-by: Kuntal Ghosh
Reviewed-by: Junwang Zhao
Discussion: https://postgr.es/m/202408122233[email protected]
src/backend/optimizer/util/inherit.c