mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-11-27 07:21:09 +08:00
411ae64997
This commit introduces two new functions postgres_fdw_disconnect() and postgres_fdw_disconnect_all(). The former function discards the cached connections to the specified foreign server. The latter discards all the cached connections. If the connection is used in the current transaction, it's not closed and a warning message is emitted. For example, these functions are useful when users want to explicitly close the foreign server connections that are no longer necessary and then to prevent them from eating up the foreign servers connections capacity. Author: Bharath Rupireddy, tweaked a bit by Fujii Masao Reviewed-by: Alexey Kondratov, Zhijie Hou, Zhihong Yu, Fujii Masao Discussion: https://postgr.es/m/CALj2ACVvrp5=AVp2PupEm+nAC8S4buqR3fJMmaCoc7ftT0aD2A@mail.gmail.com
21 lines
626 B
SQL
21 lines
626 B
SQL
/* contrib/postgres_fdw/postgres_fdw--1.0--1.1.sql */
|
|
|
|
-- complain if script is sourced in psql, rather than via ALTER EXTENSION
|
|
\echo Use "ALTER EXTENSION postgres_fdw UPDATE TO '1.1'" to load this file. \quit
|
|
|
|
CREATE FUNCTION postgres_fdw_get_connections (OUT server_name text,
|
|
OUT valid boolean)
|
|
RETURNS SETOF record
|
|
AS 'MODULE_PATHNAME'
|
|
LANGUAGE C STRICT PARALLEL RESTRICTED;
|
|
|
|
CREATE FUNCTION postgres_fdw_disconnect (text)
|
|
RETURNS bool
|
|
AS 'MODULE_PATHNAME'
|
|
LANGUAGE C STRICT PARALLEL RESTRICTED;
|
|
|
|
CREATE FUNCTION postgres_fdw_disconnect_all ()
|
|
RETURNS bool
|
|
AS 'MODULE_PATHNAME'
|
|
LANGUAGE C STRICT PARALLEL RESTRICTED;
|