aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmit Kapila <akapila@postgresql.org>2024-06-21 09:49:30 +0530
committerAmit Kapila <akapila@postgresql.org>2024-06-21 09:49:30 +0530
commit3c469a939cf1cc95b136653e7c6e27e472dc0472 (patch)
treea875320455a5b052cf497015ce8a4b5b01e1fdd6
parent4f196667627055ce7c6b3e8d3e9a4f5f6a906b86 (diff)
downloadpostgresql-3c469a939cf1cc95b136653e7c6e27e472dc0472.tar.gz
postgresql-3c469a939cf1cc95b136653e7c6e27e472dc0472.zip
Doc: Generated columns are skipped for logical replication.
Add a note in docs that generated columns are skipped for logical replication. Author: Peter Smith Reviewed-by: Peter Eisentraut Backpatch-through: 12 Discussion: https://postgr.es/m/CAHut+PuXb1GLQztQkoWzYjSwkAZZ0dgCJaAHyJtZF3kmtcL=kA@mail.gmail.com
-rw-r--r--doc/src/sgml/ddl.sgml6
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/src/sgml/ddl.sgml b/doc/src/sgml/ddl.sgml
index 11fa9c4a327..679b2bf0af4 100644
--- a/doc/src/sgml/ddl.sgml
+++ b/doc/src/sgml/ddl.sgml
@@ -400,6 +400,12 @@ CREATE TABLE people (
generated columns in <literal>BEFORE</literal> triggers.
</para>
</listitem>
+ <listitem>
+ <para>
+ Generated columns are skipped for logical replication and cannot be
+ specified in a <command>CREATE PUBLICATION</command> column list.
+ </para>
+ </listitem>
</itemizedlist>
</para>
</sect1>