diff options
author | Alvaro Herrera | 2024-03-20 14:28:14 +0000 |
---|---|---|
committer | Alvaro Herrera | 2024-03-20 14:28:14 +0000 |
commit | a0390f6ca6c730949577e0d3c1fde7a77696ca17 (patch) | |
tree | 839ac064368fa6c94dd531a2d420c0ed058c1764 /src/backend/commands | |
parent | da952b415f4444fcc85ea79c3f006af142d3c90a (diff) |
Review wording on tablespaces w.r.t. partitioned tables
Remove a redundant comment, and document pg_class.reltablespace properly
in catalogs.sgml.
After commits a36c84c3e4a9, 87259588d0ab and others.
Backpatch to 12.
Discussion: https://postgr.es/m/202403191013.w2kr7wqlamqz@alvherre.pgsql
Diffstat (limited to 'src/backend/commands')
-rw-r--r-- | src/backend/commands/tablecmds.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/backend/commands/tablecmds.c b/src/backend/commands/tablecmds.c index 3ed0618b4e6..6c0c899210b 100644 --- a/src/backend/commands/tablecmds.c +++ b/src/backend/commands/tablecmds.c @@ -807,10 +807,6 @@ DefineRelation(CreateStmt *stmt, char relkind, Oid ownerId, } else if (stmt->partbound) { - /* - * For partitions, when no other tablespace is specified, we default - * the tablespace to the parent partitioned table's. - */ Assert(list_length(inheritOids) == 1); tablespaceId = get_rel_tablespace(linitial_oid(inheritOids)); } |