aboutsummaryrefslogtreecommitdiff
path: root/src/backend/executor
diff options
context:
space:
mode:
authorMagnus Hagander <magnus@hagander.net>2018-11-02 13:56:16 +0100
committerMagnus Hagander <magnus@hagander.net>2018-11-02 13:56:52 +0100
commitfbec7459aa39da864ad1d578f044a21c3b3b057c (patch)
tree79d55688053fef8d9d63099f06f8eca154b5142e /src/backend/executor
parent8610c973ddf1cbf0befc1369d2cf0d56c0efcd0a (diff)
downloadpostgresql-fbec7459aa39da864ad1d578f044a21c3b3b057c.tar.gz
postgresql-fbec7459aa39da864ad1d578f044a21c3b3b057c.zip
Fix spelling errors and typos in comments
Author: Daniel Gustafsson <daniel@yesql.se>
Diffstat (limited to 'src/backend/executor')
-rw-r--r--src/backend/executor/execExprInterp.c2
-rw-r--r--src/backend/executor/execPartition.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/executor/execExprInterp.c b/src/backend/executor/execExprInterp.c
index 1b0946b02f2..c08df6f162d 100644
--- a/src/backend/executor/execExprInterp.c
+++ b/src/backend/executor/execExprInterp.c
@@ -1622,7 +1622,7 @@ ExecInterpExpr(ExprState *state, ExprContext *econtext, bool *isnull)
/*
* Evaluate aggregate transition / combine function that has a
- * by-value transition type. That's a seperate case from the
+ * by-value transition type. That's a separate case from the
* by-reference implementation because it's a bit simpler.
*/
EEO_CASE(EEOP_AGG_PLAIN_TRANS_BYVAL)
diff --git a/src/backend/executor/execPartition.c b/src/backend/executor/execPartition.c
index 0bcb2377c34..1e72e9fb3f5 100644
--- a/src/backend/executor/execPartition.c
+++ b/src/backend/executor/execPartition.c
@@ -852,7 +852,7 @@ ExecCleanupTupleRouting(ModifyTableState *mtstate,
{
ResultRelInfo *resultRelInfo = proute->partitions[i];
- /* skip further processsing for uninitialized partitions */
+ /* skip further processing for uninitialized partitions */
if (resultRelInfo == NULL)
continue;