diff options
author | Amit Kapila <akapila@postgresql.org> | 2019-05-26 18:28:18 +0530 |
---|---|---|
committer | Amit Kapila <akapila@postgresql.org> | 2019-05-26 18:28:18 +0530 |
commit | 9679345f3c5ec071f63db358581e28f06c8744a7 (patch) | |
tree | 12365b3337578d66f41a58d0e2c2966d9eb3acac /src/backend/executor | |
parent | 41205719d34969018f708baa70d9d06dae0c0d08 (diff) | |
download | postgresql-9679345f3c5ec071f63db358581e28f06c8744a7.tar.gz postgresql-9679345f3c5ec071f63db358581e28f06c8744a7.zip |
Fix typos.
Reported-by: Alexander Lakhin
Author: Alexander Lakhin
Reviewed-by: Amit Kapila and Tom Lane
Discussion: https://postgr.es/m/7208de98-add8-8537-91c0-f8b089e2928c@gmail.com
Diffstat (limited to 'src/backend/executor')
-rw-r--r-- | src/backend/executor/execMain.c | 2 | ||||
-rw-r--r-- | src/backend/executor/execTuples.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/executor/execMain.c b/src/backend/executor/execMain.c index 8c8528b1340..a2bd9a7859b 100644 --- a/src/backend/executor/execMain.c +++ b/src/backend/executor/execMain.c @@ -2432,7 +2432,7 @@ ExecBuildAuxRowMark(ExecRowMark *erm, List *targetlist) * inputslot - tuple for processing - this can be the slot from * EvalPlanQualSlot(), for the increased efficiency. * - * This tests whether the tuple in inputslot still matches the relvant + * This tests whether the tuple in inputslot still matches the relevant * quals. For that result to be useful, typically the input tuple has to be * last row version (otherwise the result isn't particularly useful) and * locked (otherwise the result might be out of date). That's typically diff --git a/src/backend/executor/execTuples.c b/src/backend/executor/execTuples.c index 968e2039d1e..f785efae65d 100644 --- a/src/backend/executor/execTuples.c +++ b/src/backend/executor/execTuples.c @@ -1602,7 +1602,7 @@ ExecStoreHeapTupleDatum(Datum data, TupleTableSlot *slot) * NB: If materialize is true, modifications of the returned tuple are * allowed. But it depends on the type of the slot whether such modifications * will also affect the slot's contents. While that is not the nicest - * behaviour, all such modifcations are in the process of being removed. + * behaviour, all such modifications are in the process of being removed. */ HeapTuple ExecFetchSlotHeapTuple(TupleTableSlot *slot, bool materialize, bool *shouldFree) @@ -1645,7 +1645,7 @@ ExecFetchSlotHeapTuple(TupleTableSlot *slot, bool materialize, bool *shouldFree) * tuple should be considered as read-only. * * If that callback is not supported, it calls copy_minimal_tuple callback - * which is expected to return a copy of minimal tuple represnting the + * which is expected to return a copy of minimal tuple representing the * contents of the slot. In this case *shouldFree is set to true, * indicating the caller that it should free the memory consumed by the * minimal tuple. In this case the returned minimal tuple may be written |