diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2017-06-13 13:05:59 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2017-06-13 13:05:59 -0400 |
commit | 651902deb1551db8b401fdeab9bdb8a61cee7f9f (patch) | |
tree | c06f24749e9421a403a425f9037a20911680ca3a /src/backend/executor/execMain.c | |
parent | 096f1ccd5290286b135822bb282fa884454d4b69 (diff) | |
download | postgresql-651902deb1551db8b401fdeab9bdb8a61cee7f9f.tar.gz postgresql-651902deb1551db8b401fdeab9bdb8a61cee7f9f.zip |
Re-run pgindent.
This is just to have a clean base state for testing of Piotr Stefaniak's
latest version of FreeBSD indent. I fixed up a couple of places where
pgindent would have changed format not-nicely. perltidy not included.
Discussion: https://postgr.es/m/VI1PR03MB119959F4B65F000CA7CD9F6BF2CC0@VI1PR03MB1199.eurprd03.prod.outlook.com
Diffstat (limited to 'src/backend/executor/execMain.c')
-rw-r--r-- | src/backend/executor/execMain.c | 6 |
1 files changed, 3 insertions, 3 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. |