pg13 docs: minor fix for "System views" list

Started by Ian Barwickover 5 years ago6 messages
#1Ian Barwick
ian.barwick@2ndquadrant.com
1 attachment(s)

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>&lt;iteration count&gt;</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>
#2Fujii Masao
masao.fujii@oss.nttdata.com
In reply to: Ian Barwick (#1)
Re: pg13 docs: minor fix for "System views" list

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

#3Michael Paquier
michael@paquier.xyz
In reply to: Ian Barwick (#1)
Re: pg13 docs: minor fix for "System views" list

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

#4Michael Paquier
michael@paquier.xyz
In reply to: Fujii Masao (#2)
Re: pg13 docs: minor fix for "System views" list

On Mon, May 25, 2020 at 03:12:57PM +0900, Fujii Masao wrote:

Thanks! LGTM. Will commit this.

Oops :)
--
Michael

#5Fujii Masao
masao.fujii@oss.nttdata.com
In reply to: Michael Paquier (#4)
Re: pg13 docs: minor fix for "System views" list

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

#6Ian Barwick
ian.barwick@2ndquadrant.com
In reply to: Fujii Masao (#5)
Re: pg13 docs: minor fix for "System views" list

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