]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
Document new catalog columns, missed in commit 8185bb5347.
authorJeff Davis <jdavis@postgresql.org>
Fri, 10 Apr 2026 03:29:42 +0000 (20:29 -0700)
committerJeff Davis <jdavis@postgresql.org>
Fri, 10 Apr 2026 03:29:42 +0000 (20:29 -0700)
Reported-by: "Shinoda, Noriyoshi (PSD Japan FSI)" <noriyoshi.shinoda@hpe.com>
Co-authored-by: "Shinoda, Noriyoshi (PSD Japan FSI)" <noriyoshi.shinoda@hpe.com>
Discussion: https://postgr.es/m/LV8PR84MB3787135EBDBF7747A05731F3EE592@LV8PR84MB3787.NAMPRD84.PROD.OUTLOOK.COM

doc/src/sgml/catalogs.sgml

index 0b3e6308d56fe2a76e0ebb5b14e6e80dbc437dfb..4b474c139174d79ce51b7fbcfd969f78d856138a 100644 (file)
@@ -4181,6 +4181,19 @@ SCRAM-SHA-256$<replaceable>&lt;iteration count&gt;</replaceable>:<replaceable>&l
       </para></entry>
      </row>
 
+     <row>
+      <entry role="catalog_table_entry"><para role="column_definition">
+       <structfield>fdwconnection</structfield> <type>oid</type>
+       (references <link linkend="catalog-pg-proc"><structname>pg_proc</structname></link>.<structfield>oid</structfield>)
+      </para>
+      <para>
+       References a connection function that is responsible for creating a
+       connection string for a subscription when the subscription uses a
+       server based on this foreign-data wrapper. Zero if this foreign-data
+       wrapper does not support subscription connections.
+      </para></entry>
+     </row>
+
      <row>
       <entry role="catalog_table_entry"><para role="column_definition">
        <structfield>fdwacl</structfield> <type>aclitem[]</type>
@@ -8714,12 +8727,22 @@ SCRAM-SHA-256$<replaceable>&lt;iteration count&gt;</replaceable>:<replaceable>&l
       </para></entry>
      </row>
 
+     <row>
+      <entry role="catalog_table_entry"><para role="column_definition">
+       <structfield>subserver</structfield> <type>oid</type>
+       (references <link linkend="catalog-pg-foreign-server"><structname>pg_foreign_server</structname></link>.<structfield>oid</structfield>)
+      </para>
+      <para>
+       Foreign server to use for the connection string. Zero if <structfield>subconninfo</structfield> is nonnull.
+      </para></entry>
+     </row>
+
      <row>
       <entry role="catalog_table_entry"><para role="column_definition">
        <structfield>subconninfo</structfield> <type>text</type>
       </para>
       <para>
-       Connection string to the upstream database
+       Connection string to the upstream database. <literal>NULL</literal> if <structfield>subserver</structfield> is nonzero.
       </para></entry>
      </row>