pgsql: Prevent drop of tablespaces used by partitioned relations - Mailing list pgsql-committers

From Alvaro Herrera
Subject pgsql: Prevent drop of tablespaces used by partitioned relations
Date
Msg-id E1l07RG-0000NE-Vt@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Prevent drop of tablespaces used by partitioned relations

When a tablespace is used in a partitioned relation (per commits
ca4103025dfe in pg12 for tables and 33e6c34c3267 in pg11 for indexes),
it is possible to drop the tablespace, potentially causing various
problems.  One such was reported in bug #16577, where a rewriting ALTER
TABLE causes a server crash.

Protect against this by using pg_shdepend to keep track of tablespaces
when used for relations that don't keep physical files; we now abort a
tablespace if we see that the tablespace is referenced from any
partitioned relations.

Backpatch this to 11, where this problem has been latent all along.  We
don't try to create pg_shdepend entries for existing partitioned
indexes/tables, but any ones that are modified going forward will be
protected.

Note slight behavior change: when trying to drop a tablespace that
contains both regular tables as well as partitioned ones, you'd
previously get ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE and now you'll
get ERRCODE_DEPENDENT_OBJECTS_STILL_EXIST.  Arguably, the latter is more
correct.

It is possible to add protecting pg_shdepend entries for existing
tables/indexes, by doing
  ALTER TABLE ONLY some_partitioned_table SET TABLESPACE pg_default;
  ALTER TABLE ONLY some_partitioned_table SET TABLESPACE original_tablespace;
for each partitioned table/index that is not in the database default
tablespace.  Because these partitioned objects do not have storage, no
file needs to be actually moved, so it shouldn't take more time than
what's required to acquire locks.

This query can be used to search for such relations:
SELECT ... FROM pg_class WHERE relkind IN ('p', 'I') AND reltablespace <> 0

Reported-by: Alexander Lakhin <exclusion@gmail.com>
Discussion: https://postgr.es/m/16577-881633a9f9894fd5@postgresql.org
Author: Álvaro Herrera <alvherre@alvh.no-ip.org>
Reviewed-by: Michael Paquier <michael@paquier.xyz>

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/ebfe2dbd6b624e2a428e14b7ee9322cc096f63f7

Modified Files
--------------
doc/src/sgml/catalogs.sgml                | 13 +++++-
src/backend/catalog/heap.c                |  9 ++++
src/backend/catalog/pg_shdepend.c         | 68 +++++++++++++++++++++++++++----
src/backend/commands/tablecmds.c          |  4 ++
src/backend/commands/tablespace.c         | 12 ++++++
src/include/catalog/dependency.h          | 13 ++++++
src/test/regress/input/tablespace.source  |  3 ++
src/test/regress/output/tablespace.source |  5 +++
8 files changed, 117 insertions(+), 10 deletions(-)


pgsql-committers by date:

Previous
From: Fujii Masao
Date:
Subject: pgsql: Stabilize timeline switch regression test.
Next
From: Alvaro Herrera
Date:
Subject: pgsql: Prevent drop of tablespaces used by partitioned relations