diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2023-01-11 22:19:49 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2023-01-11 22:19:55 -0500 |
commit | d93d68aeeaeeda0e871825b461fd9ab68c7c0de3 (patch) | |
tree | 847b8b3be8e667c275efcd1a05a147043cfb992a | |
parent | d30b499997caa77805c112b3e0524d2bca8f3e48 (diff) | |
download | postgresql-d93d68aeeaeeda0e871825b461fd9ab68c7c0de3.tar.gz postgresql-d93d68aeeaeeda0e871825b461fd9ab68c7c0de3.zip |
Doc: fix silly thinko in 8bf6ec3ba.
Amit Langote
Discussion: https://postgr.es/m/CA+HiwqG2v-SnWyJuyVM-Z8DEFukY8+qe3XLMwSG4Xp7Yf=RioA@mail.gmail.com
-rw-r--r-- | doc/src/sgml/ddl.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/ddl.sgml b/doc/src/sgml/ddl.sgml index 1c0700d3476..db40c47077d 100644 --- a/doc/src/sgml/ddl.sgml +++ b/doc/src/sgml/ddl.sgml @@ -361,7 +361,7 @@ CREATE TABLE people ( definition without any <literal>GENERATED</literal> clause in <command>CREATE TABLE ... PARTITION OF</command>, then its <literal>GENERATED</literal> clause will automatically be copied - from the parent. <command>ALTER TABLE ... ADD PARTITION</command> + from the parent. <command>ALTER TABLE ... ATTACH PARTITION</command> will insist that parent and child columns already match as to generation status, but it will not require their generation expressions to match. |