From: Magnus Hagander Date: Mon, 23 Apr 2018 08:31:22 +0000 (+0200) Subject: Add comment explaining BGWORKER_BYPASS_ALLOWCONN X-Git-Tag: REL_11_BETA1~193 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=43cc4ee6340779f2a17fb5bab27355c2cb2e23a6;p=postgresql Add comment explaining BGWORKER_BYPASS_ALLOWCONN Suggested by Michael Paquier --- 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);