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 1uCpnp-002uJV-3J for pgsql-hackers@arkaria.postgresql.org; Thu, 08 May 2025 01:11:57 +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 1uCpno-000JnV-7f for pgsql-hackers@arkaria.postgresql.org; Thu, 08 May 2025 01:11:56 +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.94.2) (envelope-from ) id 1uCpnn-000JnJ-Ug for pgsql-hackers@lists.postgresql.org; Thu, 08 May 2025 01:11:55 +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.96) (envelope-from ) id 1uCpnl-000gNA-1u for pgsql-hackers@lists.postgresql.org; Thu, 08 May 2025 01:11:55 +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=WhDIWU6eGJZ4cCvxY5FRbCd2OJNq79EzAO8+CrooMxM=; b=e1sXb GfnaJX3ZsYXj4AbtIzM1QQKFKza6VqEzgZIJdXJ88KeyBiKQukoCGfwb9nxsfQaWi5GySHaqItzT+ UJaPSxsbABmtxvtVtPYcPbg6tT/zJh+gzZlNJ8KY1ZHU3gQFlPbtu2OHwclcChZKZ0n9h0apZiZ9y CWpwErdTqqJ12j81P82mLF1XifWO984rUOdiHCTYZkbKR2Kz66jgiLqvY2athKM1uK++5Eg6+e7lU YBDM8VoWLstuRs+6tUpXmPwZ8Q4+zVecrLPoPyM0nws5zyRPNPhyrJJl/OslkIGfO/QK3IbzMtfN6 fDc5maDFWxmwjJNHhlyGhe9g6A9YA==; Received: from bruce by momjian.us with local (Exim 4.96) (envelope-from ) id 1uCpnl-00EwwR-14; Wed, 07 May 2025 21:11:53 -0400 Date: Wed, 7 May 2025 21:11:53 -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="X0za1E5zuj1oFgRW" Content-Disposition: inline In-Reply-To: List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Archived-At: Precedence: bulk --X0za1E5zuj1oFgRW Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Thu, May 8, 2025 at 12:47:22PM +1200, David Rowley wrote: > On Thu, 8 May 2025 at 12:36, Bruce Momjian wrote: > > +Change pg_backend_memory_contexts.level and pg_log_backend_memory_contexts()() to be one-based (Melih Mutlu, Fujii Masao) > > There's an extra set of parentheses on that function name. There's > also an inconsistency between the commit link you added and the author > you added. You've put the author of 706cbed3510 but the commit link > contains d9e03864b. Ah, I see those now. It was two commits. For some reason the edits are hard for me; 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. --X0za1E5zuj1oFgRW 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 5e23688e9b8..4f45c90d7d2 100644 --- a/doc/src/sgml/release-18.sgml +++ b/doc/src/sgml/release-18.sgml @@ -174,14 +174,18 @@ This is now longer needed since pg_backend_memory_contexts.path was added. Author: David Rowley 2024-07-25 [32d3ed816] Add path column to pg_backend_memory_contexts view Author: David Rowley -2025-04-18 [d9e03864b] Make levels 1-based in pg_log_backend_memory_contexts() +2025-04-18 [d9e03864b] Make levels 1-based in +pg_log_backend_memory_contexts() +Author: Fujii Masao +2025-04-21 [706cbed35] doc: Fix memory context level in pg_log_backend_memory_c --> -Change pg_backend_memory_contexts.level and pg_log_backend_memory_contexts()() to be one-based (Melih Mutlu, Fujii Masao) +Change pg_backend_memory_contexts.level and pg_log_backend_memory_contexts() to be one-based (Melih Mutlu, Atsushi Torikoshi, David Rowley, Fujii Masao) § § +§ --X0za1E5zuj1oFgRW--