diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2017-07-31 17:08:14 -0400 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2017-07-31 17:08:14 -0400 |
commit | f40254a799f7057a415917dacb5ba7eab5b17a99 (patch) | |
tree | a13243ace575d60b50519aefaf3b54da03e9972b /src/backend/executor/execMain.c | |
parent | 4427b515e6195bd2304e082ea5a5c5d6d36c4eb5 (diff) | |
download | postgresql-f40254a799f7057a415917dacb5ba7eab5b17a99.tar.gz postgresql-f40254a799f7057a415917dacb5ba7eab5b17a99.zip |
Fix typo
Author: Etsuro Fujita <fujita.etsuro@lab.ntt.co.jp>
Diffstat (limited to 'src/backend/executor/execMain.c')
-rw-r--r-- | src/backend/executor/execMain.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/executor/execMain.c b/src/backend/executor/execMain.c index 78cbcd1a324..c11aa4fe214 100644 --- a/src/backend/executor/execMain.c +++ b/src/backend/executor/execMain.c @@ -3334,7 +3334,7 @@ ExecFindPartition(ResultRelInfo *resultRelInfo, PartitionDispatch *pd, /* * First check the root table's partition constraint, if any. No point in - * routing the tuple it if it doesn't belong in the root table itself. + * routing the tuple if it doesn't belong in the root table itself. */ if (resultRelInfo->ri_PartitionCheck) ExecPartitionCheck(resultRelInfo, slot, estate); |