From d93d68aeeaeeda0e871825b461fd9ab68c7c0de3 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Wed, 11 Jan 2023 22:19:49 -0500 Subject: [PATCH] Doc: fix silly thinko in 8bf6ec3ba. Amit Langote Discussion: https://postgr.es/m/CA+HiwqG2v-SnWyJuyVM-Z8DEFukY8+qe3XLMwSG4Xp7Yf=RioA@mail.gmail.com --- doc/src/sgml/ddl.sgml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/src/sgml/ddl.sgml b/doc/src/sgml/ddl.sgml index 1c0700d347..db40c47077 100644 --- a/doc/src/sgml/ddl.sgml +++ b/doc/src/sgml/ddl.sgml @@ -361,7 +361,7 @@ CREATE TABLE people ( definition without any GENERATED clause in CREATE TABLE ... PARTITION OF, then its GENERATED clause will automatically be copied - from the parent. ALTER TABLE ... ADD PARTITION + from the parent. ALTER TABLE ... ATTACH PARTITION will insist that parent and child columns already match as to generation status, but it will not require their generation expressions to match.