We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parentc6ae0dd commita44de67Copy full SHA for a44de67
compat.h
@@ -55,7 +55,10 @@ InitPostgresCompat(const char *in_dbname, Oid dboid,
55
booloverride_allow_connections,
56
char*out_dbname)
57
{
58
-#ifPG_VERSION_NUM >=150000
+#ifPG_VERSION_NUM >=170000
59
+InitPostgres(in_dbname,dboid,username,useroid, (load_session_libraries ?INIT_PG_LOAD_SESSION_LIBS :0) |
60
+ (override_allow_connections ?INIT_PG_OVERRIDE_ALLOW_CONNS :0),out_dbname);
61
+#elifPG_VERSION_NUM >=150000
62
InitPostgres(in_dbname,dboid,username,useroid,load_session_libraries,
63
override_allow_connections,out_dbname);
64
#elifPG_VERSION_NUM >=110000