Issue on catalogs.sgml
Hey,
While working on the french translation of the manual, I found that one
column of pg_stats_ext was on the pg_stats columns' list. Here is a quick
patch to fix this.
Regards.
--
Guillaume.
Attachments:
catalogs.patchtext/x-patch; charset=US-ASCII; name=catalogs.patchDownload
diff --git a/doc/src/sgml/catalogs.sgml b/doc/src/sgml/catalogs.sgml
index 8aebc4d12f..1063168646 100644
--- a/doc/src/sgml/catalogs.sgml
+++ b/doc/src/sgml/catalogs.sgml
@@ -12751,19 +12751,10 @@ SELECT * FROM pg_locks pl LEFT JOIN pg_prepared_xacts ppx
(references <link linkend="catalog-pg-attribute"><structname>pg_attribute</structname></link>.<structfield>attname</structfield>)
</para>
<para>
- Names of the columns included in the extended statistics object
+ Name of the column described by this row
</para></entry>
</row>
- <row>
- <entry role="catalog_table_entry"><para role="column_definition">
- <structfield>exprs</structfield> <type>text[]</type>
- </para>
- <para>
- Expressions included in the extended statistics object
- </para></entry>
- </row>
-
<row>
<entry role="catalog_table_entry"><para role="column_definition">
<structfield>inherited</structfield> <type>bool</type>
@@ -13007,6 +12998,15 @@ SELECT * FROM pg_locks pl LEFT JOIN pg_prepared_xacts ppx
</para></entry>
</row>
+ <row>
+ <entry role="catalog_table_entry"><para role="column_definition">
+ <structfield>exprs</structfield> <type>text[]</type>
+ </para>
+ <para>
+ Expressions included in the extended statistics object
+ </para></entry>
+ </row>
+
<row>
<entry role="catalog_table_entry"><para role="column_definition">
<structfield>kinds</structfield> <type>char[]</type>
Guillaume Lelarge <guillaume@lelarge.info> writes:
While working on the french translation of the manual, I found that one
column of pg_stats_ext was on the pg_stats columns' list. Here is a quick
patch to fix this.
Right you are, and after casting a suspicious eye on the responsible
commit, I found another similar error. "patch" with the default
amount of context is not too bright about handling our documentation
tables :-(.
Pushed.
regards, tom lane
Le mar. 25 mai 2021 à 00:05, Tom Lane <tgl@sss.pgh.pa.us> a écrit :
Guillaume Lelarge <guillaume@lelarge.info> writes:
While working on the french translation of the manual, I found that one
column of pg_stats_ext was on the pg_stats columns' list. Here is a quick
patch to fix this.Right you are, and after casting a suspicious eye on the responsible
commit, I found another similar error. "patch" with the default
amount of context is not too bright about handling our documentation
tables :-(.Pushed.
Thanks.
--
Guillaume.