From cca97ce6a6653df7f4ec71ecd54944cc9a6c4c16 Mon Sep 17 00:00:00 2001 From: Daniel Gustafsson Date: Thu, 21 Sep 2023 13:53:07 +0200 Subject: Allow dbname in pg_basebackup/pg_receivewal connstring As physical replication work at the cluster level and not database level, any dbname in the connection string is ignored. Proxies and middleware used in connecting to the cluster might however need to know the dbname in order to make the correct routing decision for the connection. With this the startup packet will include the dbname parameter. Author: Jelte Fennema-Nio Reviewed-by: Tristen Raab Reviewed-by: Jim Jones Discussion: https://postgr.es/m/CAGECzQTw-dZkVT_RELRzfWRzY714-VaTjoBATYfZq93R8C-auA@mail.gmail.com --- doc/src/sgml/ref/pg_basebackup.sgml | 5 ++++- doc/src/sgml/ref/pg_receivewal.sgml | 7 +++++-- 2 files changed, 9 insertions(+), 3 deletions(-) (limited to 'doc/src') diff --git a/doc/src/sgml/ref/pg_basebackup.sgml b/doc/src/sgml/ref/pg_basebackup.sgml index d2b8ddd200c..344de921e4b 100644 --- a/doc/src/sgml/ref/pg_basebackup.sgml +++ b/doc/src/sgml/ref/pg_basebackup.sgml @@ -778,7 +778,10 @@ PostgreSQL documentation The option is called --dbname for consistency with other client applications, but because pg_basebackup doesn't connect to any particular database in the cluster, any database - name in the connection string will be ignored. + name in the connection string will be ignored + by PostgreSQL. Middleware, or proxies, used in + connecting to PostgreSQL might however + utilize the value. diff --git a/doc/src/sgml/ref/pg_receivewal.sgml b/doc/src/sgml/ref/pg_receivewal.sgml index cecc7daec97..798b972d3cc 100644 --- a/doc/src/sgml/ref/pg_receivewal.sgml +++ b/doc/src/sgml/ref/pg_receivewal.sgml @@ -316,8 +316,11 @@ PostgreSQL documentation The option is called --dbname for consistency with other client applications, but because pg_receivewal - doesn't connect to any particular database in the cluster, database - name in the connection string will be ignored. + doesn't connect to any particular database in the cluster, any database + name in the connection string will be ignored by + PostgreSQL. Middleware, or proxies, used in + connecting to PostgreSQL might however + utilize the value. -- cgit v1.2.3