Addresses review items

pull/7259/head
gindibay 2023-10-13 21:59:30 +03:00
parent 3244c3967f
commit 0db68de575
1 changed files with 17 additions and 17 deletions

View File

@ -95,7 +95,7 @@ int UtilityHookLevel = 0;
/* Local functions forward declarations for helper functions */
static void ProcessUtilityInternal(PlannedStmt *pstmt,
static void citus_ProcessUtilityInternal(PlannedStmt *pstmt,
const char *queryString,
ProcessUtilityContext context,
ParamListInfo params,
@ -329,7 +329,7 @@ citus_ProcessUtility(PlannedStmt *pstmt,
PG_TRY();
{
ProcessUtilityInternal(pstmt, queryString, context, params, queryEnv, dest,
citus_ProcessUtilityInternal(pstmt, queryString, context, params, queryEnv, dest,
completionTag);
if (UtilityHookLevel == 1)
@ -404,7 +404,7 @@ citus_ProcessUtility(PlannedStmt *pstmt,
/*
* ProcessUtilityInternal is a helper function for citus_ProcessUtility where majority
* citus_ProcessUtilityInternal is a helper function for citus_ProcessUtility where majority
* of the Citus specific utility statements are handled here. The distinction between
* both functions is that Citus_ProcessUtility does not handle CALL and DO statements.
* The reason for the distinction is implemented to be able to find the "top-level" DDL
@ -412,7 +412,7 @@ citus_ProcessUtility(PlannedStmt *pstmt,
* this goal.
*/
static void
ProcessUtilityInternal(PlannedStmt *pstmt,
citus_ProcessUtilityInternal(PlannedStmt *pstmt,
const char *queryString,
ProcessUtilityContext context,
ParamListInfo params,