doc: update "relam" description in pg_class catalog reference

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

Hi

Here:

https://www.postgresql.org/docs/devel/catalog-pg-class.html

the description for "relam" has not been updated to take into account
table access methods; patch attached.

Regards

Ian Barwick

--
Ian Barwick https://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Training & Services

Attachments:

pg_class-relam.patchtext/x-patch; name=pg_class-relam.patchDownload
diff --git a/doc/src/sgml/catalogs.sgml b/doc/src/sgml/catalogs.sgml
new file mode 100644
index 1300c7b..df68cf7
*** a/doc/src/sgml/catalogs.sgml
--- b/doc/src/sgml/catalogs.sgml
*************** SCRAM-SHA-256$<replaceable>&lt;iteration
*** 1730,1736 ****
        <entry><structfield>relam</structfield></entry>
        <entry><type>oid</type></entry>
        <entry><literal><link linkend="catalog-pg-am"><structname>pg_am</structname></link>.oid</literal></entry>
!       <entry>If this is an index, the access method used (B-tree, hash, etc.)</entry>
       </row>
  
       <row>
--- 1730,1736 ----
        <entry><structfield>relam</structfield></entry>
        <entry><type>oid</type></entry>
        <entry><literal><link linkend="catalog-pg-am"><structname>pg_am</structname></link>.oid</literal></entry>
!       <entry>If this is table or an index, the access method used (heap, B-tree, hash, etc.)</entry>
       </row>
  
       <row>
#2Ian Barwick
ian.barwick@2ndquadrant.com
In reply to: Ian Barwick (#1)
1 attachment(s)
Re: doc: update "relam" description in pg_class catalog reference

On 6/20/19 11:17 AM, Ian Barwick wrote:

Hi

Here:

  https://www.postgresql.org/docs/devel/catalog-pg-class.html

the description for "relam" has not been updated to take into account
table access methods; patch attached.

Whoops, correct version attached. Sorry about the noise.

Regards

Ian Barwick

--
Ian Barwick https://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Training & Services

Attachments:

pg_class-relam.v2.patchtext/x-patch; name=pg_class-relam.v2.patchDownload
diff --git a/doc/src/sgml/catalogs.sgml b/doc/src/sgml/catalogs.sgml
new file mode 100644
index 1300c7b..84f730c
*** a/doc/src/sgml/catalogs.sgml
--- b/doc/src/sgml/catalogs.sgml
*************** SCRAM-SHA-256$<replaceable>&lt;iteration
*** 1730,1736 ****
        <entry><structfield>relam</structfield></entry>
        <entry><type>oid</type></entry>
        <entry><literal><link linkend="catalog-pg-am"><structname>pg_am</structname></link>.oid</literal></entry>
!       <entry>If this is an index, the access method used (B-tree, hash, etc.)</entry>
       </row>
  
       <row>
--- 1730,1736 ----
        <entry><structfield>relam</structfield></entry>
        <entry><type>oid</type></entry>
        <entry><literal><link linkend="catalog-pg-am"><structname>pg_am</structname></link>.oid</literal></entry>
!       <entry>If this is a table or an index, the access method used (heap, B-tree, hash, etc.)</entry>
       </row>
  
       <row>
#3Michael Paquier
michael@paquier.xyz
In reply to: Ian Barwick (#2)
Re: doc: update "relam" description in pg_class catalog reference

On Thu, Jun 20, 2019 at 11:20:46AM +0900, Ian Barwick wrote:

Whoops, correct version attached. Sorry about the noise.

v2 looks fine to me, committed. Thanks!
--
Michael

#4Ian Barwick
ian.barwick@2ndquadrant.com
In reply to: Michael Paquier (#3)
Re: doc: update "relam" description in pg_class catalog reference

On 6/20/19 1:07 PM, Michael Paquier wrote:

On Thu, Jun 20, 2019 at 11:20:46AM +0900, Ian Barwick wrote:

Whoops, correct version attached. Sorry about the noise.

v2 looks fine to me, committed. Thanks!

Thanks!

Regards

Ian Barwick

--
Ian Barwick https://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Training & Services