pgsql: postgres_fdw: Make postgres_fdw.application_name support more es

From: Fujii Masao <fujii(at)postgresql(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: postgres_fdw: Make postgres_fdw.application_name support more es
Date: 2022-02-18 02:39:16
Message-ID: E1nKtAy-0001rN-Eb@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

postgres_fdw: Make postgres_fdw.application_name support more escape sequences.

Commit 6e0cb3dec1 allowed postgres_fdw.application_name to include
escape sequences %a (application name), %d (database name), %u (user name)
and %p (pid). In addition to them, this commit makes it support
the escape sequences for session ID (%c) and cluster name (%C).
These are helpful to investigate where each remote transactions came from.

Author: Fujii Masao
Reviewed-by: Ryohei Takahashi, Kyotaro Horiguchi
Discussion: https://postgr.es/m/1041dc9a-c976-049f-9f14-e7d94c29c4b2@oss.nttdata.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/94c49d53402240ad7ddbcae9049ff2840a54b9c6

Modified Files
--------------
contrib/postgres_fdw/expected/postgres_fdw.out | 20 ++++++++++++++++++++
contrib/postgres_fdw/option.c | 6 ++++++
contrib/postgres_fdw/sql/postgres_fdw.sql | 11 +++++++++++
doc/src/sgml/postgres-fdw.sgml | 14 ++++++++++++++
src/include/utils/guc.h | 2 +-
5 files changed, 52 insertions(+), 1 deletion(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Fujii Masao 2022-02-18 03:19:58 pgsql: Fix comment in CheckIndexCompatible().
Previous Message Amit Kapila 2022-02-18 02:27:19 pgsql: Fix a comment in worker.c.