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

Поиск
Список
Период
Сортировка
От Fujii Masao
Тема pgsql: Fix tablespace handling in MERGE/SPLIT partition commands.
Дата
Msg-id E1sTD9V-001i3X-QY@gemulon.postgresql.org
обсуждение исходный текст
Список 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(-)


В списке pgsql-committers по дате отправления:

Предыдущее
От: Richard Guo
Дата:
Сообщение: pgsql: Check lateral references within PHVs for memoize cache keys
Следующее
От: Fujii Masao
Дата:
Сообщение: pgsql: Fix tablespace handling in MERGE/SPLIT partition commands.