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 1sf0Cp-00Fehy-Au for pgsql-hackers@arkaria.postgresql.org; Fri, 16 Aug 2024 16:53:39 +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 1sf0Cn-006ZsI-TT for pgsql-hackers@arkaria.postgresql.org; Fri, 16 Aug 2024 16:53:37 +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 1sf0Cn-006Zqx-IT for pgsql-hackers@lists.postgresql.org; Fri, 16 Aug 2024 16:53:37 +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.94.2) (envelope-from ) id 1sf0Cl-005Cjc-5y for pgsql-hackers@postgresql.org; Fri, 16 Aug 2024 16:53:36 +0000 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=momjian.us; s=2024011501; 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=leXwyB4CYy5eRY01OUn+IcwhgfMz5X534Cke6xc80vY=; b=PJOrb 1xdqqnL71wvB4UX431qM8TpIKtgUQyA/WakOdi6GhJMlJVObt6ym30hGN7SNy/jBfs0BxOqQSUv3f W4zBtGX//vMHKeVatcyfLF4ymm1NufcjcjTkbMVWjhdEoBnr6GzRqkRGRN0FJ/oyMstbp3NdhgRYO NIBExNunfQmN6MeKTgU78rJDycYz1B0owOXqaelYiMcwU6O+1Ck0aCt6wQLHuwE8wP0F4M3LhaEd4 fPfzr29h3nfIHkrOb9MY0PgMe2ZwrMY+HHl5DoAPDRl+8ouZRo34qJLG8z5t/T8l3X96ikCsOzRu3 +ENcifCiCqYXZxnA4m0GfqFRNa5Vg==; Received: from bruce by momjian.us with local (Exim 4.96) (envelope-from ) id 1sf0Cj-003Tgj-2W; Fri, 16 Aug 2024 12:53:33 -0400 Date: Fri, 16 Aug 2024 12:53:33 -0400 From: Bruce Momjian To: Kisoon Kwon Cc: Matthias van de Meent , PostgreSQL-development Subject: Re: First draft of PG 17 release notes Message-ID: References: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="WOEmTlJrSt2FhQ9H" Content-Disposition: inline In-Reply-To: List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Archived-At: Precedence: bulk --WOEmTlJrSt2FhQ9H Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Wed, Jul 17, 2024 at 03:32:45PM +0900, Kisoon Kwon wrote: > Hi, > > In the PG17 release notes, I noticed it is mentioned as > "pg_attribute.stxstattarget" which seems incorrect. > In my opinion, it should be "pg_statistic_ext.stxstattarget" because the > "stxstattarget" column is part of the "pg_statistic_ext" catalog. You are right, fixed in the attached patch. Sorry for the delay. -- Bruce Momjian https://momjian.us EDB https://enterprisedb.com Only you can decide what is important to you. --WOEmTlJrSt2FhQ9H Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="REL_17_STABLE.diff" diff --git a/doc/src/sgml/release-17.sgml b/doc/src/sgml/release-17.sgml index e9cee92ff44..dfbf8a74cd4 100644 --- a/doc/src/sgml/release-17.sgml +++ b/doc/src/sgml/release-17.sgml @@ -269,7 +269,7 @@ Author: Peter Eisentraut Change pg_attribute.attstattarget and - pg_attribute.stxstattarget + pg_statistic_ext.stxstattarget to represent the default statistics target as NULL (Peter Eisentraut) --WOEmTlJrSt2FhQ9H--