From f116356deb75c113751db3410dec2ef59e46db73 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Tue, 31 Mar 2020 17:07:43 -0400 Subject: [PATCH] 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 --- doc/src/sgml/ddl.sgml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/src/sgml/ddl.sgml b/doc/src/sgml/ddl.sgml index ec9e937fc5..61e5e51300 100644 --- a/doc/src/sgml/ddl.sgml +++ b/doc/src/sgml/ddl.sgml @@ -3548,8 +3548,8 @@ ALTER INDEX measurement_city_id_logdate_key Example - We use the same measurement table we used - above. To implement partitioning using inheritance, use + We use the non-partitioned measurement + table above. To implement partitioning using inheritance, use the following steps: