pgsql: dblink: Replace WAIT_EVENT_EXTENSION with custom wait events

From: Michael Paquier <michael(at)paquier(dot)xyz>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: dblink: Replace WAIT_EVENT_EXTENSION with custom wait events
Date: 2023-10-05 01:24:18
Message-ID: E1qoD69-0004w2-5z@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

dblink: Replace WAIT_EVENT_EXTENSION with custom wait events

Two custom wait events are added here:
- "DblinkConnect", when waiting to establish a connection to a remote
server.
- "DblinkGetConnect", when waiting to establish a connection to a remote
server but it could not be found in the list of already-opened ones.

Author: Masahiro Ikeda
Discussion: https://postgr.es/m/197bce267fa691a0ac62c86c4ab904c4@oss.nttdata.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/c789f0f6cc5da084f75f2556bada572a1a05e39a

Modified Files
--------------
contrib/dblink/dblink.c | 16 ++++++++++++++--
doc/src/sgml/dblink.sgml | 26 ++++++++++++++++++++++++++
2 files changed, 40 insertions(+), 2 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Michael Paquier 2023-10-05 03:24:09 pgsql: worker_spi: Expand set of options to start workers
Previous Message Michael Paquier 2023-10-05 00:50:55 pgsql: postgres_fdw: Replace WAIT_EVENT_EXTENSION with custom wait even