diff options
author | Bruce Momjian <bruce@momjian.us> | 2020-03-31 17:07:43 -0400 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2020-03-31 17:07:43 -0400 |
commit | 690e4648719183b0527b6c20a87798e5bd6282e4 (patch) | |
tree | 44d517c9acad30e41715b7ab9a9f320b9e0384ba | |
parent | b8c651b75b2133d843b4fbbd52254b55792339cd (diff) |
doc: clarify which table creation is used for inheritance part.
Previously people might assume that the partition syntax version of
CREATE TABLE is to be used for the inheritance partition table example;
mention that the non-partitioned version should be used.
Reported-by: mib@nic.at
Discussion: https://postgr.es/m/158089540905.1098.15071165437284409576@wrigleys.postgresql.org
Backpatch-through: 10
-rw-r--r-- | doc/src/sgml/ddl.sgml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/ddl.sgml b/doc/src/sgml/ddl.sgml index 4e31c905926..41949393e80 100644 --- a/doc/src/sgml/ddl.sgml +++ b/doc/src/sgml/ddl.sgml @@ -3494,8 +3494,8 @@ ALTER TABLE measurement ATTACH PARTITION measurement_y2008m02 <title>Example</title> <para> - We use the same <structname>measurement</structname> table we used - above. To implement it as a partitioned table using inheritance, use + We use the non-partitioned <structname>measurement</structname> + table above. To implement partitioning using inheritance, use the following steps: <orderedlist spacing="compact"> |