aboutsummaryrefslogtreecommitdiff
path: root/src/backend/executor/nodeIncrementalSort.c
diff options
context:
space:
mode:
authorAmit Kapila <akapila@postgresql.org>2020-07-20 07:45:26 +0530
committerAmit Kapila <akapila@postgresql.org>2020-07-20 07:45:26 +0530
commit044dc7b964147ec6303d59320fb743693b22af30 (patch)
treebc05e0e4bccf417fd09c075629214b6de15915e0 /src/backend/executor/nodeIncrementalSort.c
parenta766d6ca22ac7c233e69c896ae0c5f19de916db4 (diff)
downloadpostgresql-044dc7b964147ec6303d59320fb743693b22af30.tar.gz
postgresql-044dc7b964147ec6303d59320fb743693b22af30.zip
Fix minor typo in nodeIncrementalSort.c.
Author: Vignesh C Reviewed-by: James Coleman Backpatch-through: 13, where it was introduced Discussion: https://postgr.es/m/CALDaNm0WjZqRvdeL59ZfYH0o4mLbKQ23jm-bnjXcFzgpANx55g@mail.gmail.com
Diffstat (limited to 'src/backend/executor/nodeIncrementalSort.c')
-rw-r--r--src/backend/executor/nodeIncrementalSort.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/executor/nodeIncrementalSort.c b/src/backend/executor/nodeIncrementalSort.c
index e056469448c..6c0d24ee25a 100644
--- a/src/backend/executor/nodeIncrementalSort.c
+++ b/src/backend/executor/nodeIncrementalSort.c
@@ -65,8 +65,8 @@
* into the second mode if we believe it's beneficial.
*
* Sorting incrementally can potentially use less memory, avoid fetching
- * and sorting all tuples in the the dataset, and begin returning tuples
- * before the entire result set is available.
+ * and sorting all tuples in the dataset, and begin returning tuples before
+ * the entire result set is available.
*
* The hybrid mode approach allows us to optimize for both very small
* groups (where the overhead of a new tuplesort is high) and very large