pg13 docs: minor fix for "System views" list
Hi
In this list:
https://www.postgresql.org/docs/devel/views-overview.html
"pg_shmem_allocations" is not quite in alphabetical order and
needs to be swapped with the preceding entry, per attached patch.
Regards
Ian Barwick
--
Ian Barwick https://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Training & Services
Attachments:
doc-fix-system-views-list-pg13.patchtext/x-patch; charset=UTF-8; name=doc-fix-system-views-list-pg13.patchDownload
commit 76dccbb12463f2c5195cd09d62cacb69dc630fb6
Author: Ian Barwick <ian@2ndquadrant.com>
Date: Mon May 25 10:57:05 2020 +0900
doc: fix alphabetical order of "System views" overview
"pg_shmem_allocations" was in the wrong place.
diff --git a/doc/src/sgml/catalogs.sgml b/doc/src/sgml/catalogs.sgml
index 9851ef2713..70fda9408b 100644
--- a/doc/src/sgml/catalogs.sgml
+++ b/doc/src/sgml/catalogs.sgml
@@ -9309,13 +9309,13 @@ SCRAM-SHA-256$<replaceable><iteration count></replaceable>:<replaceable>&l
</row>
<row>
- <entry><link linkend="view-pg-stats"><structname>pg_stats</structname></link></entry>
- <entry>planner statistics</entry>
+ <entry><link linkend="view-pg-shmem-allocations"><structname>pg_shmem_allocations</structname></link></entry>
+ <entry>shared memory allocations</entry>
</row>
<row>
- <entry><link linkend="view-pg-shmem-allocations"><structname>pg_shmem_allocations</structname></link></entry>
- <entry>shared memory allocations</entry>
+ <entry><link linkend="view-pg-stats"><structname>pg_stats</structname></link></entry>
+ <entry>planner statistics</entry>
</row>
<row>
On 2020/05/25 11:03, Ian Barwick wrote:
Hi
In this list:
https://www.postgresql.org/docs/devel/views-overview.html
"pg_shmem_allocations" is not quite in alphabetical order and
needs to be swapped with the preceding entry, per attached patch.
Thanks! LGTM. Will commit this.
Regards,
--
Fujii Masao
Advanced Computing Technology Center
Research and Development Headquarters
NTT DATA CORPORATION
On Mon, May 25, 2020 at 11:03:01AM +0900, Ian Barwick wrote:
"pg_shmem_allocations" is not quite in alphabetical order and
needs to be swapped with the preceding entry, per attached patch.
Thanks, fixed!
--
Michael
On Mon, May 25, 2020 at 03:12:57PM +0900, Fujii Masao wrote:
Thanks! LGTM. Will commit this.
Oops :)
--
Michael
On 2020/05/25 15:24, Michael Paquier wrote:
On Mon, May 25, 2020 at 03:12:57PM +0900, Fujii Masao wrote:
Thanks! LGTM. Will commit this.
Oops :)
No problem :) Thanks for the commit!
Regards,
--
Fujii Masao
Advanced Computing Technology Center
Research and Development Headquarters
NTT DATA CORPORATION
On 2020/05/25 16:03, Fujii Masao wrote:
On 2020/05/25 15:24, Michael Paquier wrote:
On Mon, May 25, 2020 at 03:12:57PM +0900, Fujii Masao wrote:
Thanks! LGTM. Will commit this.
Oops :)
No problem :) Thanks for the commit!
Thanks both!
Regards
Ian Barwick
--
Ian Barwick https://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Training & Services