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 <br...@momjian.us> https://momjian.us EDB https://enterprisedb.com Only you can decide what is important to you.
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 <pe...@eisentraut.org> Change <link linkend="catalog-pg-attribute"><structname>pg_attribute</structname>.<structfield>attstattarget</structfield></link> and - <structname>pg_attribute</structname>.<structfield>stxstattarget</structfield> + <structname>pg_statistic_ext</structname>.<structfield>stxstattarget</structfield> to represent the default statistics target as <literal>NULL</literal> (Peter Eisentraut) </para>