From 43cc4ee6340779f2a17fb5bab27355c2cb2e23a6 Mon Sep 17 00:00:00 2001 From: Magnus Hagander Date: Mon, 23 Apr 2018 10:31:22 +0200 Subject: [PATCH] Add comment explaining BGWORKER_BYPASS_ALLOWCONN Suggested by Michael Paquier --- src/include/postmaster/bgworker.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/include/postmaster/bgworker.h b/src/include/postmaster/bgworker.h index 9c49bb7f4b..de16d11c2f 100644 --- a/src/include/postmaster/bgworker.h +++ b/src/include/postmaster/bgworker.h @@ -145,9 +145,15 @@ extern void BackgroundWorkerInitializeConnection(const char *dbname, const char /* Just like the above, but specifying database and user by OID. */ extern void BackgroundWorkerInitializeConnectionByOid(Oid dboid, Oid useroid, uint32 flags); -/* Flags to BackgroundWorkerInitializeConnection et al */ +/* + * Flags to BackgroundWorkerInitializeConnection et al + * + * + * Allow bypassing datallowconn restrictions when connecting to database + */ #define BGWORKER_BYPASS_ALLOWCONN 1 + /* Block/unblock signals in a background worker process */ extern void BackgroundWorkerBlockSignals(void); extern void BackgroundWorkerUnblockSignals(void); -- 2.40.0