diff options
author | Jeff Davis <jdavis@postgresql.org> | 2025-06-13 10:02:24 -0700 |
---|---|---|
committer | Jeff Davis <jdavis@postgresql.org> | 2025-06-13 10:02:24 -0700 |
commit | a0c7b765372d949cec54960dafcaadbc04b3204e (patch) | |
tree | c6410331809897a8e78f144f46c506c947d0a40f /src/backend/executor/execGrouping.c | |
parent | 29aaeceee2f3420fb6ecb8e6aae311076c17f687 (diff) | |
download | postgresql-a0c7b765372d949cec54960dafcaadbc04b3204e.tar.gz postgresql-a0c7b765372d949cec54960dafcaadbc04b3204e.zip |
Comment fixups from 626df47ad9.
Reported-by: Peter Smith <smithpb2250@gmail.com>
Discussion: https://postgr.es/m/CAHut+PspbHQmRCBL1c-opoJeTUKUaFFfUQJd2rhDZqwUrWCi7w@mail.gmail.com
Diffstat (limited to 'src/backend/executor/execGrouping.c')
-rw-r--r-- | src/backend/executor/execGrouping.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/executor/execGrouping.c b/src/backend/executor/execGrouping.c index 255bd795361..b5400749353 100644 --- a/src/backend/executor/execGrouping.c +++ b/src/backend/executor/execGrouping.c @@ -144,7 +144,7 @@ execTuplesHashPrepare(int numCols, * hashfunctions: FmgrInfos of datatype-specific hashing functions to use * collations: collations to use in comparisons * nbuckets: initial estimate of hashtable size - * additionalsize: size of data stored in ->additional + * additionalsize: size of data that may be stored along with the hash entry * metacxt: memory context for long-lived allocation, but not per-entry data * tablecxt: memory context in which to store table entries * tempcxt: short-lived context for evaluation hash and comparison functions @@ -288,7 +288,7 @@ ResetTupleHashTable(TupleHashTable hashtable) * * If isnew isn't NULL, then a new entry is created if no existing entry * matches. On return, *isnew is true if the entry is newly created, - * false if it existed already. ->additional_data in the new entry has + * false if it existed already. The additional data in the new entry has * been zeroed. */ TupleHashEntry |