diff options
Diffstat (limited to 'src/backend/executor')
-rw-r--r-- | src/backend/executor/execMain.c | 6 | ||||
-rw-r--r-- | src/backend/executor/nodeModifyTable.c | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/backend/executor/execMain.c b/src/backend/executor/execMain.c index 3caeeac708c..7f460bd1a74 100644 --- a/src/backend/executor/execMain.c +++ b/src/backend/executor/execMain.c @@ -104,7 +104,7 @@ static char *ExecBuildSlotPartitionKeyDescription(Relation rel, static void EvalPlanQualStart(EPQState *epqstate, EState *parentestate, Plan *planTree); static void ExecPartitionCheck(ResultRelInfo *resultRelInfo, - TupleTableSlot *slot, EState *estate); + TupleTableSlot *slot, EState *estate); /* * Note that GetUpdatedColumns() also exists in commands/trigger.c. There does @@ -1347,8 +1347,8 @@ InitResultRelInfo(ResultRelInfo *resultRelInfo, * partition, if there any BR triggers defined on the table. Although * tuple-routing implicitly preserves the partition constraint of the * target partition for a given row, the BR triggers may change the row - * such that the constraint is no longer satisfied, which we must fail - * for by checking it explicitly. + * such that the constraint is no longer satisfied, which we must fail for + * by checking it explicitly. * * If this is a partitioned table, the partition constraint (if any) of a * given row will be checked just before performing tuple-routing. diff --git a/src/backend/executor/nodeModifyTable.c b/src/backend/executor/nodeModifyTable.c index 96fbfc96e8e..ff5ad98a91c 100644 --- a/src/backend/executor/nodeModifyTable.c +++ b/src/backend/executor/nodeModifyTable.c @@ -421,8 +421,8 @@ ExecInsert(ModifyTableState *mtstate, * trigger might modify the tuple such that the partition constraint * is no longer satisfied, so we need to check in that case. */ - bool check_partition_constr = - (resultRelInfo->ri_PartitionCheck != NIL); + bool check_partition_constr = + (resultRelInfo->ri_PartitionCheck != NIL); /* * Constraints might reference the tableoid column, so initialize |