diff options
author | Tom Lane | 2024-11-04 19:36:04 +0000 |
---|---|---|
committer | Tom Lane | 2024-11-04 19:36:04 +0000 |
commit | e2a912909308041d629f1e62ea84c76d179674b1 (patch) | |
tree | fa0564694d7defc6cc895e9c9275f694bd96d536 /doc/src | |
parent | e367114429e09696fce01dd6f256e58a2c858734 (diff) |
pg_basebackup, pg_receivewal: fix failure to find password in ~/.pgpass.
Sloppy refactoring in commit cca97ce6a caused these programs
to pass dbname = NULL to libpq if there was no "--dbname" switch
on the command line, where before "replication" would be passed.
This didn't break things completely, because the source server doesn't
care about the dbname specified for a physical replication connection.
However, it did cause libpq to fail to match a ~/.pgpass entry that
has "replication" in the dbname field. Restore the previous behavior
of passing "replication".
Also, closer inspection shows that if you do specify a dbname
in the connection string, that is what will be matched to ~/.pgpass,
not "replication". This was the pre-existing behavior so we should
not change it, but the SGML docs were pretty misleading about it.
Improve that.
Per bug #18685 from Toshi Harada. Back-patch to v17 where the
error crept in.
Discussion: https://postgr.es/m/[email protected]
Discussion: https://postgr.es/m/[email protected]
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/pg_basebackup.sgml | 16 | ||||
-rw-r--r-- | doc/src/sgml/ref/pg_receivewal.sgml | 13 |
2 files changed, 18 insertions, 11 deletions
diff --git a/doc/src/sgml/ref/pg_basebackup.sgml b/doc/src/sgml/ref/pg_basebackup.sgml index 82d0c8e0088..ad36166c685 100644 --- a/doc/src/sgml/ref/pg_basebackup.sgml +++ b/doc/src/sgml/ref/pg_basebackup.sgml @@ -807,14 +807,18 @@ PostgreSQL documentation will override any conflicting command line options. </para> <para> - The option is called <literal>--dbname</literal> for consistency with other + This option is called <literal>--dbname</literal> for consistency with other client applications, but because <application>pg_basebackup</application> doesn't connect to any particular database in the cluster, any database - name in the connection string will be ignored - by <productname>PostgreSQL</productname>. Middleware, or proxies, used in - connecting to <productname>PostgreSQL</productname> might however - utilize the value. The database name specified in connection string can - also be used by <link linkend="logicaldecoding-replication-slots-synchronization"> + name included in the connection string will be ignored by the server. + However, a database name supplied that way overrides the default + database name (<literal>replication</literal>) for purposes of + looking up the replication connection's password + in <filename>~/.pgpass</filename>. Similarly, middleware or proxies + used in connecting to <productname>PostgreSQL</productname> might + utilize the name for purposes such as connection routing. The + database name can also be used + by <link linkend="logicaldecoding-replication-slots-synchronization"> logical replication slot synchronization</link>. </para> </listitem> diff --git a/doc/src/sgml/ref/pg_receivewal.sgml b/doc/src/sgml/ref/pg_receivewal.sgml index 8944eee2a36..9e353a068e5 100644 --- a/doc/src/sgml/ref/pg_receivewal.sgml +++ b/doc/src/sgml/ref/pg_receivewal.sgml @@ -315,13 +315,16 @@ PostgreSQL documentation will override any conflicting command line options. </para> <para> - The option is called <literal>--dbname</literal> for consistency with other + This option is called <literal>--dbname</literal> for consistency with other client applications, but because <application>pg_receivewal</application> doesn't connect to any particular database in the cluster, any database - name in the connection string will be ignored by - <productname>PostgreSQL</productname>. Middleware, or proxies, used in - connecting to <productname>PostgreSQL</productname> might however - utilize the value. + name included in the connection string will be ignored by the server. + However, a database name supplied that way overrides the default + database name (<literal>replication</literal>) for purposes of + looking up the replication connection's password + in <filename>~/.pgpass</filename>. Similarly, middleware or proxies + used in connecting to <productname>PostgreSQL</productname> might + utilize the name for purposes such as connection routing. </para> </listitem> </varlistentry> |