pgsql: Fix tablespace handling in MERGE/SPLIT partition commands. - Mailing list pgsql-committers

From Fujii Masao
Subject pgsql: Fix tablespace handling in MERGE/SPLIT partition commands.
Date
Msg-id E1sTDA0-001i48-Gb@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Fix tablespace handling in MERGE/SPLIT partition commands.

As commit ca4103025d stated, new partitions without a specified tablespace
should inherit the parent relation's tablespace. However, previously,
ALTER TABLE MERGE PARTITIONS and ALTER TABLE SPLIT PARTITION commands
always created new partitions in the default tablespace, ignoring
the parent's tablespace. This commit ensures new partitions inherit
the parent's tablespace.

Backpatch to v17 where these commands were introduced.

Author: Fujii Masao
Reviewed-by: Masahiko Sawada
Discussion: https://postgr.es/m/abaf390b-3320-40a5-8815-ef476db5cfe7@oss.nttdata.com

Branch
------
REL_17_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/929390e4d860b641f72aece70280e66114bffbd0

Modified Files
--------------
doc/src/sgml/ref/alter_table.sgml             |  6 ++++--
src/backend/commands/tablecmds.c              |  2 +-
src/test/regress/expected/partition_merge.out | 23 +++++++++++++++++++++++
src/test/regress/expected/partition_split.out | 26 ++++++++++++++++++++++++++
src/test/regress/sql/partition_merge.sql      | 12 ++++++++++++
src/test/regress/sql/partition_split.sql      | 13 +++++++++++++
6 files changed, 79 insertions(+), 3 deletions(-)


pgsql-committers by date:

Previous
From: Fujii Masao
Date:
Subject: pgsql: Fix tablespace handling in MERGE/SPLIT partition commands.
Next
From: Fujii Masao
Date:
Subject: pgsql: Fix unstable tests in partition_merge.sql and partition_split.sq