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:44 -0400 |
commit | d97d55460bbda698a8d3ca100bee5485255b888f (patch) | |
tree | 92732ccc13ab144315490aa0c139d8790d2077b0 | |
parent | fe3036527a1ff715bceb22ff5cba919001262a71 (diff) | |
download | postgresql-d97d55460bbda698a8d3ca100bee5485255b888f.tar.gz postgresql-d97d55460bbda698a8d3ca100bee5485255b888f.zip |
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 8d3a0d1c223..d2588876c00 100644 --- a/doc/src/sgml/ddl.sgml +++ b/doc/src/sgml/ddl.sgml @@ -4103,8 +4103,8 @@ ALTER INDEX measurement_city_id_logdate_key <title>Example</title> <para> - We use the same <structname>measurement</structname> table we used - above. To implement partitioning 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"> |