File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 2222#include "miscadmin.h"
2323#include "tcop/utility.h"
2424#include "utils/guc.h"
25+ #include "utils/queryenvironment.h"
2526
2627#include "sepgsql.h"
2728
@@ -301,6 +302,7 @@ sepgsql_utility_command(PlannedStmt *pstmt,
301302 const char * queryString ,
302303 ProcessUtilityContext context ,
303304 ParamListInfo params ,
305+ QueryEnvironment * queryEnv ,
304306 DestReceiver * dest ,
305307 char * completionTag )
306308{
@@ -364,11 +366,11 @@ sepgsql_utility_command(PlannedStmt *pstmt,
364366
365367 if (next_ProcessUtility_hook )
366368 (* next_ProcessUtility_hook ) (pstmt , queryString ,
367- context , params ,
369+ context , params , queryEnv ,
368370 dest , completionTag );
369371 else
370372 standard_ProcessUtility (pstmt , queryString ,
371- context , params ,
373+ context , params , queryEnv ,
372374 dest , completionTag );
373375 }
374376 PG_CATCH ();
You can’t perform that action at this time.
0 commit comments