aboutsummaryrefslogtreecommitdiff
path: root/src/backend/executor/nodeIncrementalSort.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2023-05-19 15:57:38 +0200
committerPeter Eisentraut <peter@eisentraut.org>2023-05-19 16:13:16 +0200
commit803b4a26ca3fdddbb6e3ce87a23bfbcc8a8669f3 (patch)
tree173fa82e785dbbaf1af6c04b19ee3a8da9118dad /src/backend/executor/nodeIncrementalSort.c
parent6ff33cdbabdf770ca9d6b417c0687c04b2cd4d36 (diff)
downloadpostgresql-803b4a26ca3fdddbb6e3ce87a23bfbcc8a8669f3.tar.gz
postgresql-803b4a26ca3fdddbb6e3ce87a23bfbcc8a8669f3.zip
Remove stray mid-sentence tabs in comments
Diffstat (limited to 'src/backend/executor/nodeIncrementalSort.c')
-rw-r--r--src/backend/executor/nodeIncrementalSort.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/executor/nodeIncrementalSort.c b/src/backend/executor/nodeIncrementalSort.c
index 12bc22f33c6..26ceafec5f8 100644
--- a/src/backend/executor/nodeIncrementalSort.c
+++ b/src/backend/executor/nodeIncrementalSort.c
@@ -69,7 +69,7 @@
* 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
+ * groups (where the overhead of a new tuplesort is high) and very large
* groups (where we can lower cost by not having to sort on already sorted
* columns), albeit at some extra cost while switching between modes.
*