aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmit Kapila <akapila@postgresql.org>2024-06-21 09:41:13 +0530
committerAmit Kapila <akapila@postgresql.org>2024-06-21 09:41:13 +0530
commita99b2ccd567937629cf4dc01391c59af66e3384d (patch)
treec2c36bd94346f06cf9c78ff3a037d3976bb153bb
parent1424c7abc44fcb61f6a2a63f7d163670ba3250be (diff)
downloadpostgresql-a99b2ccd567937629cf4dc01391c59af66e3384d.tar.gz
postgresql-a99b2ccd567937629cf4dc01391c59af66e3384d.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 efe68fc8458..7f3d7e2c3e8 100644
--- a/doc/src/sgml/ddl.sgml
+++ b/doc/src/sgml/ddl.sgml
@@ -373,6 +373,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>