diff options
author | Kevin Grittner | 2017-04-01 05:10:12 +0000 |
---|---|---|
committer | Kevin Grittner | 2017-04-01 05:10:12 +0000 |
commit | 01fd6f8f2d15a9369768921d6fc95ac481779430 (patch) | |
tree | 6659219835376b2fc875a464a156dcc816739429 | |
parent | 59702716324ab9c07b02fb005dcf14c7f48c4632 (diff) |
Try to fix breakage of sepgsql hooks by ENR patch.
Turned up by buildfarm animal rhinoceros. Fixing blind. Will have
to wait for next run by rhinoceros to know whether it worked.
-rw-r--r-- | contrib/sepgsql/hooks.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/contrib/sepgsql/hooks.c b/contrib/sepgsql/hooks.c index 93cc8debaa..c4b978b48f 100644 --- a/contrib/sepgsql/hooks.c +++ b/contrib/sepgsql/hooks.c @@ -22,6 +22,7 @@ #include "miscadmin.h" #include "tcop/utility.h" #include "utils/guc.h" +#include "utils/queryenvironment.h" #include "sepgsql.h" @@ -301,6 +302,7 @@ sepgsql_utility_command(PlannedStmt *pstmt, const char *queryString, ProcessUtilityContext context, ParamListInfo params, + QueryEnvironment *queryEnv, DestReceiver *dest, char *completionTag) { @@ -364,11 +366,11 @@ sepgsql_utility_command(PlannedStmt *pstmt, if (next_ProcessUtility_hook) (*next_ProcessUtility_hook) (pstmt, queryString, - context, params, + context, params, queryEnv, dest, completionTag); else standard_ProcessUtility(pstmt, queryString, - context, params, + context, params, queryEnv, dest, completionTag); } PG_CATCH(); |