Fixes indentation

pull/7372/head
gindibay 2023-12-07 12:53:14 +03:00
parent 7e1a9a9fee
commit d7fa9a5e36
1 changed files with 31 additions and 31 deletions

View File

@ -729,8 +729,7 @@ static uint64 MicrosecondsBetweenTimestamps(instr_time startTime, instr_time end
static int WorkerPoolCompare(const void *lhsKey, const void *rhsKey); static int WorkerPoolCompare(const void *lhsKey, const void *rhsKey);
static void SetAttributeInputMetadata(DistributedExecution *execution, static void SetAttributeInputMetadata(DistributedExecution *execution,
ShardCommandExecution *shardCommandExecution); ShardCommandExecution *shardCommandExecution);
static ExecutionParams * static ExecutionParams * GetExecutionParams(RowModifyLevel modLevel, List *taskList,
GetExecutionParams(RowModifyLevel modLevel, List *taskList,
TupleDestination *tupleDest, TupleDestination *tupleDest,
bool expectResults, bool expectResults,
ParamListInfo paramListInfo); ParamListInfo paramListInfo);
@ -1019,7 +1018,6 @@ ExecuteTaskListOutsideTransaction(RowModifyLevel modLevel, List *taskList,
} }
/* /*
* Prepare execution parameters for a task list.It is used by the * Prepare execution parameters for a task list.It is used by the
* functions that execute task lists. * functions that execute task lists.
@ -1045,6 +1043,7 @@ GetExecutionParams(RowModifyLevel modLevel, List *taskList,
return executionParams; return executionParams;
} }
/* /*
* ExecuteTaskListIntoTupleDestWithParam is a proxy to ExecuteTaskListExtended() which uses * ExecuteTaskListIntoTupleDestWithParam is a proxy to ExecuteTaskListExtended() which uses
* bind params from executor state, and with defaults for some of the arguments. * bind params from executor state, and with defaults for some of the arguments.
@ -1060,6 +1059,7 @@ ExecuteTaskListIntoTupleDestWithParam(RowModifyLevel modLevel, List *taskList,
return ExecuteTaskListExtended(executionParams); return ExecuteTaskListExtended(executionParams);
} }
/* /*
* ExecuteTaskListIntoTupleDest is a proxy to ExecuteTaskListExtended() with defaults * ExecuteTaskListIntoTupleDest is a proxy to ExecuteTaskListExtended() with defaults
* for some of the arguments. * for some of the arguments.