aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Haas <rhaas@postgresql.org>2015-05-13 15:27:41 -0400
committerRobert Haas <rhaas@postgresql.org>2015-05-13 15:27:41 -0400
commit61f68e0bed63aa5090e8be7c912843e49b30fc1e (patch)
tree066a4ff874add280c52f5ac1dfd3c49ce5c4ec4a
parent78efd5c1edb59017f06ef96773e64e6539bfbc86 (diff)
downloadpostgresql-61f68e0bed63aa5090e8be7c912843e49b30fc1e.tar.gz
postgresql-61f68e0bed63aa5090e8be7c912843e49b30fc1e.zip
Fix comment.
Commit 78efd5c1edb59017f06ef96773e64e6539bfbc86 overlooked this. Report by Peter Geoghegan.
-rw-r--r--src/backend/utils/sort/tuplesort.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/utils/sort/tuplesort.c b/src/backend/utils/sort/tuplesort.c
index 30d00bbd6f4..3d5da444a64 100644
--- a/src/backend/utils/sort/tuplesort.c
+++ b/src/backend/utils/sort/tuplesort.c
@@ -341,9 +341,9 @@ struct Tuplesortstate
bool markpos_eof; /* saved "eof_reached" */
/*
- * The sortKeys variable is used by every case other than the datum and
- * hash index cases; it is set by tuplesort_begin_xxx. tupDesc is only
- * used by the MinimalTuple and CLUSTER routines, though.
+ * The sortKeys variable is used by every case other than the hash index
+ * case; it is set by tuplesort_begin_xxx. tupDesc is only used by the
+ * MinimalTuple and CLUSTER routines, though.
*/
TupleDesc tupDesc;
SortSupport sortKeys; /* array of length nKeys */