From 3352cb4444fad223ebd5c1c8d8a814ff42c58d1b Mon Sep 17 00:00:00 2001 From: Nisha Moond 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$<iteration count>:&l + + + subconflictlogrelid oid + (references pg_class.oid) + + + OID of the subscription conflict log table created in the + pg_conflict namespace, or zero if + conflict_log_destination + is set to log. + + + + + + subconflictlogdest text + + + The destination for conflict logging: log (server + log only), table (conflict log table only), or + all (both). See + conflict_log_destination + for details. + + + subconninfo text -- 2.50.1 (Apple Git-155)