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.94.2) (envelope-from ) id 1uCpFG-002mxV-Ry for pgsql-hackers@arkaria.postgresql.org; Thu, 08 May 2025 00:36:15 +0000 Received: from localhost ([127.0.0.1] helo=malur.postgresql.org) by malur.postgresql.org with esmtp (Exim 4.94.2) (envelope-from ) id 1uCpFF-00076s-5d for pgsql-hackers@arkaria.postgresql.org; Thu, 08 May 2025 00:36:13 +0000 Received: from magus.postgresql.org ([2a02:c0:301:0:ffff::29]) by malur.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1uCpFE-00075b-QB for pgsql-hackers@lists.postgresql.org; Thu, 08 May 2025 00:36:12 +0000 Received: from momjian.us ([72.94.173.45]) by magus.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1uCpFB-000itr-2r for pgsql-hackers@lists.postgresql.org; Thu, 08 May 2025 00:36:12 +0000 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=momjian.us; s=2025010100; h=In-Reply-To:Content-Type:MIME-Version:References:Message-ID: Subject:Cc:To:From:Date:Sender:Reply-To:Content-Transfer-Encoding:Content-ID: Content-Description; bh=icTZYwejiI1GGxZ5/CpdQkEv2fAsJ1bf1dIe9LS3F6U=; b=NSmQi V7GEOC/893uD3RJYiDiRsbsRUwkoUfzMgh1fkD9ApqLNJTtXdWk4NmgAsj5DLGq79QvSI8frQ0dN+ 3tCvBgnmjUvfZbDFtB/QbSf6fncrsuf1i8x3DI2KB28wRbsIzIJ2sHBVn4Y5omzTo/x6a7aeF6TGM 71B13ArDpxdHB3D1ceEdhGrTLxB+cs1UxR6euM1oEC2HubehakY5JSU5E98SximzMRxlqfHHazpGL 1KrAHLEv7vug+1028zPqrIS7pZzdnww0BdglaxePgmPeUNuJgAKjMjnwzhEWWHp3lpyJywioLJrhT Hu97oGM52IGnGPmVrv3eH0k+Z0BYg==; Received: from bruce by momjian.us with local (Exim 4.96) (envelope-from ) id 1uCpFA-00EltL-1m; Wed, 07 May 2025 20:36:08 -0400 Date: Wed, 7 May 2025 20:36:08 -0400 From: Bruce Momjian To: David Rowley Cc: PostgreSQL-development Subject: Re: PG 18 release notes draft committed Message-ID: References: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="YI807CrXOTYzm13w" Content-Disposition: inline In-Reply-To: List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Archived-At: Precedence: bulk --YI807CrXOTYzm13w Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Thu, May 8, 2025 at 09:33:49AM +1200, David Rowley wrote: > On Fri, 2 May 2025 at 14:44, Bruce Momjian wrote: > > You can see the most current HTML-built version here: > > > > https://momjian.us/pgsql_docs/release-18.html > > You might have left it out on purpose as the output isn't likely to be > read by a machine, but for "Change pg_backend_memory_contexts.level to > be one-based", d9e03864b applied the same change to > pg_log_backend_memory_contexts(). Oh, I looked at that commit: commit 706cbed3510 Author: Fujii Masao Date: Mon Apr 21 14:53:25 2025 +0900 doc: Fix memory context level in pg_log_backend_memory_contexts() example. Commit d9e03864b6b changed the memory context level numbers shown by pg_log_backend_memory_contexts() to be 1-based. However, the example in the documentation was not updated and still used 0-based numbering. This commit updates the example to match the current 1-based output. Author: Fujii Masao Reviewed-by: David Rowley Discussion: https://postgr.es/m/1ad6d388-1b43-400d-bec9-36d52f755f74@oss.nttdata.com and didn't realize it was an SQL function, though the documentation mention makes that clear. Applied patch attached. -- Bruce Momjian https://momjian.us EDB https://enterprisedb.com Do not let urgent matters crowd out time for investment in the future. --YI807CrXOTYzm13w Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="master.diff" diff --git a/doc/src/sgml/release-18.sgml b/doc/src/sgml/release-18.sgml index 59715e71714..5e23688e9b8 100644 --- a/doc/src/sgml/release-18.sgml +++ b/doc/src/sgml/release-18.sgml @@ -173,16 +173,19 @@ This is now longer needed since pg_backend_memory_contexts.path was added. -Change pg_backend_memory_contexts.level to be one-based (Melih Mutlu) +Change pg_backend_memory_contexts.level and pg_log_backend_memory_contexts()() to be one-based (Melih Mutlu, Fujii Masao) § +§ -It was previously zero-based. +These were previously zero-based. --YI807CrXOTYzm13w--