mirror of
https://github.com/postgres/postgres.git
synced 2026-07-16 05:02:57 -04:00
Document new catalog columns, missed in commit 8185bb5347.
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
This commit is contained in:
parent
5b5bf51e43
commit
90630ec429
1 changed files with 24 additions and 1 deletions
|
|
@ -4181,6 +4181,19 @@ SCRAM-SHA-256$<replaceable><iteration count></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><iteration count></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>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue