pgsql: Fix tablespace handling in MERGE/SPLIT partition commands.

From: Fujii Masao <fujii(at)postgresql(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Fix tablespace handling in MERGE/SPLIT partition commands.
Date: 2024-07-15 04:17:29
Message-ID: E1sTD9V-001i3X-QY@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: 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
------
master

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

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(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Fujii Masao 2024-07-15 04:18:00 pgsql: Fix tablespace handling in MERGE/SPLIT partition commands.
Previous Message Richard Guo 2024-07-15 01:27:29 pgsql: Check lateral references within PHVs for memoize cache keys