diff options
author | Robert Haas <rhaas@postgresql.org> | 2015-08-04 11:45:29 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2015-08-04 11:45:29 -0400 |
commit | a6a235782083a98588e41a1298c8fcd89cfaa6b3 (patch) | |
tree | 662f2baf19724305530abcbf4352c16f814f6e22 /src | |
parent | 804163bc25e979fcd91b02e58fa2d1c6b587cc65 (diff) | |
download | postgresql-a6a235782083a98588e41a1298c8fcd89cfaa6b3.tar.gz postgresql-a6a235782083a98588e41a1298c8fcd89cfaa6b3.zip |
Update comment to match behavior of latest code.
Peter Geoghegan
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/utils/sort/tuplesort.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/utils/sort/tuplesort.c b/src/backend/utils/sort/tuplesort.c index 435041afa1c..1e62a73eed3 100644 --- a/src/backend/utils/sort/tuplesort.c +++ b/src/backend/utils/sort/tuplesort.c @@ -356,9 +356,9 @@ struct Tuplesortstate /* * Additional state for managing "abbreviated key" sortsupport routines - * (which currently may be used by all cases except the Datum sort case - * and hash index case). Tracks the intervals at which the optimization's - * effectiveness is tested. + * (which currently may be used by all cases except the hash index case). + * Tracks the intervals at which the optimization's effectiveness is + * tested. */ int64 abbrevNext; /* Tuple # at which to next check * applicability */ |