For the pushed patch (commit a5918fd), it seems we missed updating the pg_subscription catalog documentation for the two newly added columns:
subconflictlogrelid | oid | | not null | subconflictlogdest | text | C | not null | Attached is a small patch for the same. -- Thanks, Nisha
From 3352cb4444fad223ebd5c1c8d8a814ff42c58d1b Mon Sep 17 00:00:00 2001 From: Nisha Moond <[email protected]> Date: Fri, 3 Jul 2026 16:20:39 +0530 Subject: [PATCH v_nisha 1/2] Doc update pg_subscription catalog Document the newly added pg_subscription columns subconflictlogrelid and subconflictlogdest. --- doc/src/sgml/catalogs.sgml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/doc/src/sgml/catalogs.sgml b/doc/src/sgml/catalogs.sgml index 4b474c13917..7cdd9bd564a 100644 --- a/doc/src/sgml/catalogs.sgml +++ b/doc/src/sgml/catalogs.sgml @@ -8737,6 +8737,32 @@ SCRAM-SHA-256$<replaceable><iteration count></replaceable>:<replaceable>&l </para></entry> </row> + <row> + <entry role="catalog_table_entry"><para role="column_definition"> + <structfield>subconflictlogrelid</structfield> <type>oid</type> + (references <link linkend="catalog-pg-class"><structname>pg_class</structname></link>.<structfield>oid</structfield>) + </para> + <para> + OID of the subscription conflict log table created in the + <literal>pg_conflict</literal> namespace, or zero if + <link linkend="sql-createsubscription-params-with-conflict-log-destination"><literal>conflict_log_destination</literal></link> + is set to <literal>log</literal>. + </para></entry> + </row> + + <row> + <entry role="catalog_table_entry"><para role="column_definition"> + <structfield>subconflictlogdest</structfield> <type>text</type> + </para> + <para> + The destination for conflict logging: <literal>log</literal> (server + log only), <literal>table</literal> (conflict log table only), or + <literal>all</literal> (both). See + <link linkend="sql-createsubscription-params-with-conflict-log-destination"><literal>conflict_log_destination</literal></link> + for details. + </para></entry> + </row> + <row> <entry role="catalog_table_entry"><para role="column_definition"> <structfield>subconninfo</structfield> <type>text</type> -- 2.50.1 (Apple Git-155)
