Skip to content

Commit 6afc8ae

Browse files
committed
Remove obsolete comment.
Noted while studying subplan hash issue.
1 parent 80d76be commit 6afc8ae

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

src/backend/executor/execGrouping.c

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,6 @@
33
* execGrouping.c
44
* executor utility routines for grouping, hashing, and aggregation
55
*
6-
* Note: we currently assume that equality and hashing functions are not
7-
* collation-sensitive, so the code in this file has no support for passing
8-
* collation settings through from callers. That may have to change someday.
9-
*
106
* Portions Copyright (c) 1996-2020, PostgreSQL Global Development Group
117
* Portions Copyright (c) 1994, Regents of the University of California
128
*
@@ -28,8 +24,9 @@
2824
static int TupleHashTableMatch(struct tuplehash_hash *tb, const MinimalTuple tuple1, const MinimalTuple tuple2);
2925
static uint32 TupleHashTableHash_internal(struct tuplehash_hash *tb,
3026
const MinimalTuple tuple);
31-
static TupleHashEntry LookupTupleHashEntry_internal(
32-
TupleHashTable hashtable, TupleTableSlot *slot, bool *isnew, uint32 hash);
27+
static TupleHashEntry LookupTupleHashEntry_internal(TupleHashTable hashtable,
28+
TupleTableSlot *slot,
29+
bool *isnew, uint32 hash);
3330

3431
/*
3532
* Define parameters for tuple hash table code generation. The interface is

0 commit comments

Comments
 (0)