mirror of
https://github.com/postgres/postgres.git
synced 2025-07-03 20:02:46 +03:00
Final pgindent + perltidy run for v10.
This commit is contained in:
@ -411,9 +411,9 @@ ExecProcNodeFirst(PlanState *node)
|
||||
/*
|
||||
* Perform stack depth check during the first execution of the node. We
|
||||
* only do so the first time round because it turns out to not be cheap on
|
||||
* some common architectures (eg. x86). This relies on the assumption that
|
||||
* ExecProcNode calls for a given plan node will always be made at roughly
|
||||
* the same stack depth.
|
||||
* some common architectures (eg. x86). This relies on the assumption
|
||||
* that ExecProcNode calls for a given plan node will always be made at
|
||||
* roughly the same stack depth.
|
||||
*/
|
||||
check_stack_depth();
|
||||
|
||||
|
@ -1469,7 +1469,7 @@ static void
|
||||
ExecSetupTransitionCaptureState(ModifyTableState *mtstate, EState *estate)
|
||||
{
|
||||
ResultRelInfo *targetRelInfo = getASTriggerResultRelInfo(mtstate);
|
||||
int i;
|
||||
int i;
|
||||
|
||||
/* Check for transition tables on the directly targeted relation. */
|
||||
mtstate->mt_transition_capture =
|
||||
@ -1483,7 +1483,7 @@ ExecSetupTransitionCaptureState(ModifyTableState *mtstate, EState *estate)
|
||||
if (mtstate->mt_transition_capture != NULL)
|
||||
{
|
||||
ResultRelInfo *resultRelInfos;
|
||||
int numResultRelInfos;
|
||||
int numResultRelInfos;
|
||||
|
||||
/* Find the set of partitions so that we can find their TupleDescs. */
|
||||
if (mtstate->mt_partition_dispatch_info != NULL)
|
||||
@ -2254,8 +2254,8 @@ ExecInitModifyTable(ModifyTable *node, EState *estate, int eflags)
|
||||
else if (relkind == RELKIND_FOREIGN_TABLE)
|
||||
{
|
||||
/*
|
||||
* When there is a row-level trigger, there should be a
|
||||
* wholerow attribute.
|
||||
* When there is a row-level trigger, there should be
|
||||
* a wholerow attribute.
|
||||
*/
|
||||
j->jf_junkAttNo = ExecFindJunkAttribute(j, "wholerow");
|
||||
}
|
||||
|
Reference in New Issue
Block a user