diff options
author | Amit Kapila | 2024-10-30 07:06:26 +0000 |
---|---|---|
committer | Amit Kapila | 2024-10-30 07:06:26 +0000 |
commit | 745217a051a9341e8c577ea59a87665d331d4af0 (patch) | |
tree | 84dc2a406947b44ebbe9d71214fd024a83413a32 /doc/src | |
parent | f22e436bff779fee4e1ce49733ba5791d4634fb1 (diff) |
Replicate generated columns when specified in the column list.
This commit allows logical replication to publish and replicate generated
columns when explicitly listed in the column list. We also ensured that
the generated columns were copied during the initial tablesync when they
were published.
We will allow to replicate generated columns even when they are not
specified in the column list (via a new publication option) in a separate
commit.
The motivation of this work is to allow replication for cases where the
client doesn't have generated columns. For example, the case where one is
trying to replicate data from Postgres to the non-Postgres database.
Author: Shubham Khanna, Vignesh C, Hou Zhijie
Reviewed-by: Peter Smith, Hayato Kuroda, Shlok Kyal, Amit Kapila
Discussion: https://postgr.es/m/[email protected]
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/protocol.sgml | 4 | ||||
-rw-r--r-- | doc/src/sgml/ref/create_publication.sgml | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/doc/src/sgml/protocol.sgml b/doc/src/sgml/protocol.sgml index 057c46f3f57..71b6b2a535f 100644 --- a/doc/src/sgml/protocol.sgml +++ b/doc/src/sgml/protocol.sgml @@ -6544,7 +6544,7 @@ psql "dbname=postgres replication=database" -c "IDENTIFY_SYSTEM;" <para> Next, the following message part appears for each column included in - the publication (except generated columns): + the publication: </para> <variablelist> @@ -7477,7 +7477,7 @@ psql "dbname=postgres replication=database" -c "IDENTIFY_SYSTEM;" </variablelist> <para> - Next, one of the following submessages appears for each column (except generated columns): + Next, one of the following submessages appears for each column: <variablelist> <varlistentry> diff --git a/doc/src/sgml/ref/create_publication.sgml b/doc/src/sgml/ref/create_publication.sgml index fd9c5deac95..d2cac06fd76 100644 --- a/doc/src/sgml/ref/create_publication.sgml +++ b/doc/src/sgml/ref/create_publication.sgml @@ -89,7 +89,8 @@ CREATE PUBLICATION <replaceable class="parameter">name</replaceable> <para> When a column list is specified, only the named columns are replicated. - If no column list is specified, all columns of the table are replicated + The column list can contain generated columns as well. If no column list + is specified, all table columns (except generated columns) are replicated through this publication, including any columns added later. It has no effect on <literal>TRUNCATE</literal> commands. See <xref linkend="logical-replication-col-lists"/> for details about column |