Hi, On Fri, Aug 28, 2026 at 7:05 AM Bruce Momjian <[email protected]> wrote: > > On Thu, Aug 27, 2026 at 10:52:17PM -0700, Masahiko Sawada wrote: > > 4. Allow wal_receiver_timeout to be set per-subscription and user (Fujii > > Masao) > > 5. Add optional pid parameter to pg_replication_origin_session_setup() > > to allow parallelization of SQL-level replication solutions (Doruk > > Yilmaz, Hayato Kuroda) > > > > I wonder if 4 and 5 should be listed in the "Logical Replication" > > section instead because 4 is a new subscription option and 5 is > > related to replication origins, which are used only in logical > > replication. Please find the attached patch. > > Yes, I think you are correct. I can't always easily identify > logical-only changes. Patch applied, thanks.
I found another place that we need to fix: Add CREATE/ALTER PUBLICATION setting retain_dead_tuples to retain information needed for conflict resolution (Zhijie Hou) The retain_dead_tuples is a subscription option but not a publication's one. Also, it's required for conflict detection. Please review the attached patch that does: s/publication/subscription/ s/conflict resolution/conflict detection/ Regards, -- Masahiko Sawada Amazon Web Services: https://aws.amazon.com
diff --git a/doc/src/sgml/release-19.sgml b/doc/src/sgml/release-19.sgml index 8dcdc32d7c8..60a8d5e0e9c 100644 --- a/doc/src/sgml/release-19.sgml +++ b/doc/src/sgml/release-19.sgml @@ -1657,7 +1657,7 @@ Author: Amit Kapila <[email protected]> <listitem> <para> -Add <link linkend="sql-createpublication"><command>CREATE</command></link>/<link linkend="sql-alterpublication"><command>ALTER PUBLICATION</command></link> setting <link linkend="sql-createsubscription-params-with-retain-dead-tuples"><varname>retain_dead_tuples</varname></link> to retain information needed for conflict resolution (Zhijie Hou) +Add <link linkend="sql-createsubscription"><command>CREATE</command></link>/<link linkend="sql-altersubscription"><command>ALTER SUBSCRIPTION</command></link> setting <link linkend="sql-createsubscription-params-with-retain-dead-tuples"><varname>retain_dead_tuples</varname></link> to retain information needed for conflict detection (Zhijie Hou) <ulink url="&commit_baseurl;228c37086">§</ulink> <ulink url="&commit_baseurl;0d48d393d">§</ulink> <ulink url="&commit_baseurl;a850be2fe">§</ulink>
