mirror of
https://github.com/postgres/postgres.git
synced 2025-06-10 09:21:54 +03:00
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.
This commit is contained in:
@ -22,6 +22,7 @@
|
|||||||
#include "miscadmin.h"
|
#include "miscadmin.h"
|
||||||
#include "tcop/utility.h"
|
#include "tcop/utility.h"
|
||||||
#include "utils/guc.h"
|
#include "utils/guc.h"
|
||||||
|
#include "utils/queryenvironment.h"
|
||||||
|
|
||||||
#include "sepgsql.h"
|
#include "sepgsql.h"
|
||||||
|
|
||||||
@ -301,6 +302,7 @@ sepgsql_utility_command(PlannedStmt *pstmt,
|
|||||||
const char *queryString,
|
const char *queryString,
|
||||||
ProcessUtilityContext context,
|
ProcessUtilityContext context,
|
||||||
ParamListInfo params,
|
ParamListInfo params,
|
||||||
|
QueryEnvironment *queryEnv,
|
||||||
DestReceiver *dest,
|
DestReceiver *dest,
|
||||||
char *completionTag)
|
char *completionTag)
|
||||||
{
|
{
|
||||||
@ -364,11 +366,11 @@ sepgsql_utility_command(PlannedStmt *pstmt,
|
|||||||
|
|
||||||
if (next_ProcessUtility_hook)
|
if (next_ProcessUtility_hook)
|
||||||
(*next_ProcessUtility_hook) (pstmt, queryString,
|
(*next_ProcessUtility_hook) (pstmt, queryString,
|
||||||
context, params,
|
context, params, queryEnv,
|
||||||
dest, completionTag);
|
dest, completionTag);
|
||||||
else
|
else
|
||||||
standard_ProcessUtility(pstmt, queryString,
|
standard_ProcessUtility(pstmt, queryString,
|
||||||
context, params,
|
context, params, queryEnv,
|
||||||
dest, completionTag);
|
dest, completionTag);
|
||||||
}
|
}
|
||||||
PG_CATCH();
|
PG_CATCH();
|
||||||
|
Reference in New Issue
Block a user