diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml
index 3cb7d04ef79..ecd9843a68b 100644
--- a/doc/src/sgml/config.sgml
+++ b/doc/src/sgml/config.sgml
@@ -7564,8 +7564,7 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv;
This variable specifies the default tablespace in which to create
objects (tables and indexes) when a CREATE command does
- not explicitly specify a tablespace. It also determines the tablespace
- that a partitioned relation will direct future partitions to.
+ not explicitly specify a tablespace.
@@ -7589,6 +7588,14 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv;
the template database it is copied from.
+
+ If this parameter is set to a value other than the empty string
+ when a partitioned table is created, the partitioned table's
+ tablespace will be set to that value, which will be used as
+ the default tablespace for partitions created in the future,
+ even if default_tablespace has changed since then.
+
+
For more information on tablespaces,
see .