diff options
author | Amit Kapila <akapila@postgresql.org> | 2024-06-21 09:34:11 +0530 |
---|---|---|
committer | Amit Kapila <akapila@postgresql.org> | 2024-06-21 09:34:11 +0530 |
commit | ac9615d9a5ae1368de3aa9b8491d217579db5bbf (patch) | |
tree | 32c739daecb1964e0c62edc6dd6023dc1360fe6b | |
parent | 88f3baa06afd45510ecef743e11443740b678156 (diff) | |
download | postgresql-ac9615d9a5ae1368de3aa9b8491d217579db5bbf.tar.gz postgresql-ac9615d9a5ae1368de3aa9b8491d217579db5bbf.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.sgml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/src/sgml/ddl.sgml b/doc/src/sgml/ddl.sgml index 5d2ee01d5c4..40da56923d9 100644 --- a/doc/src/sgml/ddl.sgml +++ b/doc/src/sgml/ddl.sgml @@ -373,6 +373,11 @@ CREATE TABLE people ( generated columns in <literal>BEFORE</literal> triggers. </para> </listitem> + <listitem> + <para> + Generated columns are skipped for logical replication. + </para> + </listitem> </itemizedlist> </para> </sect1> |