Received: from malur.postgresql.org ([217.196.149.56]) by arkaria.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1wRtGe-002mTa-12 for pgsql-hackers@arkaria.postgresql.org; Tue, 26 May 2026 15:00:28 +0000 Received: from localhost ([127.0.0.1] helo=malur.postgresql.org) by malur.postgresql.org with esmtp (Exim 4.96) (envelope-from ) id 1wRtGc-004ewE-0s for pgsql-hackers@arkaria.postgresql.org; Tue, 26 May 2026 15:00:27 +0000 Received: from makus.postgresql.org ([2001:4800:3e1:1::229]) by malur.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1wRtGb-004ew6-33 for pgsql-hackers@lists.postgresql.org; Tue, 26 May 2026 15:00:26 +0000 Received: from momjian.us ([72.94.173.45]) by makus.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.98.2) (envelope-from ) id 1wRtGb-00000000rsf-16nc for pgsql-hackers@lists.postgresql.org; Tue, 26 May 2026 15:00:26 +0000 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=momjian.us; s=2026010100; h=In-Reply-To:Content-Transfer-Encoding:Content-Type: MIME-Version:References:Message-ID:Subject:Cc:To:From:Date:Sender:Reply-To: Content-ID:Content-Description; bh=gBS0I8kFhc+g+tpD9jO10CkI9WwTesennmQtZqBWMO4=; b=f3aQwcoGFFNMRiS3DS9o9dQh0U bYV4WLlstQPHeP/rG46RnQ3TYDngJyZXH+FWDvwhuYcFJy0WXNe2x/6j85em8FBv5cElVlEAOV8+J 0r+fUv8MA0xBrejhM9VlP0SN+iisGR9h+IEjyamMJSPcGvvcOGeB0iB1j/MtVhEEBvVWIegiEWTxB EnBzjCz2UvhT4ctZDYqnFUU+JhP77LqpWieNjbsgNSysu8lyJswMhVW7yLLaYCFMGFZxK6Soi/V0e W9J6q9zUMEA7REoC4bC05E1+JsCLVeACqZXl07Q7CkKZT0yD0x2GssRMtX6Kq0nfuKiK2rFSHHQEk DmB9BF4A==; Received: from bruce by momjian.us with local (Exim 4.98.2) (envelope-from ) id 1wRtGX-00000006YCz-1dKg; Tue, 26 May 2026 11:00:21 -0400 Date: Tue, 26 May 2026 11:00:21 -0400 From: Bruce Momjian To: Chao Li Cc: Peter Geoghegan , PostgreSQL-development , chong.peng@enmotech.com Subject: Re: First draft of PG 19 release notes Message-ID: References: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="uVVAWRizdCrNHvub" Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Archived-At: Precedence: bulk --uVVAWRizdCrNHvub Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit On Tue, May 26, 2026 at 01:25:15PM +0800, Chao Li wrote: > Chong Peng, whom I added to CC, reported this release note issue to me, so I’m just forwarding the message: > > ``` > > > Add slot synchronization skip information to pg_stat_replication_slots (Shlok Kyal) > § > § > § > > > > The new columns are slotsync_skip_count, slotsync_last_skip, and slotsync_skip_reason. > > > ``` > > The feature description is inaccurate: slotsync_skip_count and slotsync_last_skip belong to pg_stat_replication_slots, while slotsync_skip_reason belongs to pg_replication_slots. Maybe it could be reworded as: > ``` > Add slot synchronization skip information to pg_stat_replication_slots and pg_replication_slots (Shlok Kyal) > ``` Yes, very good point. I missed that detail when merging the commit items. I fixed it as you suggested, patch attached. -- Bruce Momjian https://momjian.us EDB https://enterprisedb.com Do not let urgent matters crowd out time for investment in the future. --uVVAWRizdCrNHvub Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="master.diff" diff --git a/doc/src/sgml/release-19.sgml b/doc/src/sgml/release-19.sgml index c8f2b3c6968..f0911b86005 100644 --- a/doc/src/sgml/release-19.sgml +++ b/doc/src/sgml/release-19.sgml @@ -1634,7 +1634,7 @@ Author: Amit Kapila -Add slot synchronization skip information to pg_stat_replication_slots (Shlok Kyal) +Add slot synchronization skip information to pg_stat_replication_slots and pg_replication_slots (Shlok Kyal) § § § --uVVAWRizdCrNHvub--