From 2396b66ac5fa33a43b3202ef095a360152db37dd Mon Sep 17 00:00:00 2001 From: Onur Tirtir Date: Mon, 23 Mar 2020 11:03:46 +0300 Subject: [PATCH] remove an outdated comment in local executor --- src/backend/distributed/executor/local_executor.c | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/src/backend/distributed/executor/local_executor.c b/src/backend/distributed/executor/local_executor.c index 4930ad7af..234a9d678 100644 --- a/src/backend/distributed/executor/local_executor.c +++ b/src/backend/distributed/executor/local_executor.c @@ -352,14 +352,8 @@ LocallyExecuteUtilityTask(const char *localTaskQueryCommand) else { /* - * It is a regular utility command or SELECT query with non-udf, - * targets, then we should execute it locally via process utility. - * - * If it is a regular utility command, CitusProcessUtility is the - * appropriate function to process that command. However, if it's - * a SELECT query with non-udf targets, CitusProcessUtility would - * error out as we are not expecting such SELECT queries triggered - * by utility commands. + * It is a regular utility command we should execute it locally via + * process utility. */ CitusProcessUtility(localTaskRawParseTree, localTaskQueryCommand, PROCESS_UTILITY_TOPLEVEL, NULL, None_Receiver, NULL);