aboutsummaryrefslogtreecommitdiff
path: root/doc/src
diff options
context:
space:
mode:
authorAmit Kapila <akapila@postgresql.org>2025-01-24 08:11:29 +0530
committerAmit Kapila <akapila@postgresql.org>2025-01-24 08:11:29 +0530
commit117f9f328e0f146a4b6de517501f4d5d994040a9 (patch)
tree40b3f090c5e132a782877bd435b595b7b02da4bc /doc/src
parent4f15759bdcddd23e874526a6b2c0ff86e0beb042 (diff)
downloadpostgresql-117f9f328e0f146a4b6de517501f4d5d994040a9.tar.gz
postgresql-117f9f328e0f146a4b6de517501f4d5d994040a9.zip
Doc: Fix column name in pg_publication catalog.
Commit e65dbc9927 incorrectly spelled the column name in the pg_publication catalog. In passing make the order of columns in the doc match the actual catalog. Author: Shinoda, Noriyoshi <noriyoshi.shinoda@hpe.com> Reviewed-by: Peter Smith <smithpb2250@gmail.com> Discussion: https://postgr.es/m/DM4PR84MB1734F8F140E4477580761F93EEE02@DM4PR84MB1734.NAMPRD84.PROD.OUTLOOK.COM
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/sgml/catalogs.sgml22
1 files changed, 11 insertions, 11 deletions
diff --git a/doc/src/sgml/catalogs.sgml b/doc/src/sgml/catalogs.sgml
index c88bcaa7df9..8ad0ed10b3a 100644
--- a/doc/src/sgml/catalogs.sgml
+++ b/doc/src/sgml/catalogs.sgml
@@ -6396,26 +6396,26 @@ SCRAM-SHA-256$<replaceable>&lt;iteration count&gt;</replaceable>:<replaceable>&l
<row>
<entry role="catalog_table_entry"><para role="column_definition">
- <structfield>pubgencols</structfield> <type>char</type>
+ <structfield>pubviaroot</structfield> <type>bool</type>
</para>
<para>
- Controls how to handle generated column replication when there is no
- publication column list:
- <literal>n</literal> = generated columns in the tables associated with
- the publication should not be replicated,
- <literal>s</literal> = stored generated columns in the tables associated
- with the publication should be replicated.
+ If true, operations on a leaf partition are replicated using the
+ identity and schema of its topmost partitioned ancestor mentioned in the
+ publication instead of its own.
</para></entry>
</row>
<row>
<entry role="catalog_table_entry"><para role="column_definition">
- <structfield>pubviaroot</structfield> <type>bool</type>
+ <structfield>pubgencols_type</structfield> <type>char</type>
</para>
<para>
- If true, operations on a leaf partition are replicated using the
- identity and schema of its topmost partitioned ancestor mentioned in the
- publication instead of its own.
+ Controls how to handle generated column replication when there is no
+ publication column list:
+ <literal>n</literal> = generated columns in the tables associated with
+ the publication should not be replicated,
+ <literal>s</literal> = stored generated columns in the tables associated
+ with the publication should be replicated.
</para></entry>
</row>
</tbody>