diff options
author | Amit Kapila <akapila@postgresql.org> | 2024-06-21 09:32:16 +0530 |
---|---|---|
committer | Amit Kapila <akapila@postgresql.org> | 2024-06-21 09:32:16 +0530 |
commit | 4459144bd6ec22221a6d8e2f5cb81c1bde26f103 (patch) | |
tree | dfb4db19f50335245d91ee0994523740eb2e3eef | |
parent | 9ce8ee9d3e75d673e32c862fac27152aeeb77137 (diff) |
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 eb9870d9b34..38725a12f6d 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> |