aboutsummaryrefslogtreecommitdiff
path: root/src/backend/executor
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2020-02-29 13:23:12 -0500
committerTom Lane <tgl@sss.pgh.pa.us>2020-02-29 13:23:12 -0500
commit6afc8aefd3b95c0c4e7d07d2c99b90ce83e313de (patch)
tree4e8121d9e4bcd9dcebfcea9b43a40c17746fd586 /src/backend/executor
parent80d76be51cfb7f8f54e779ec5a287d80ac28b6e4 (diff)
downloadpostgresql-6afc8aefd3b95c0c4e7d07d2c99b90ce83e313de.tar.gz
postgresql-6afc8aefd3b95c0c4e7d07d2c99b90ce83e313de.zip
Remove obsolete comment.
Noted while studying subplan hash issue.
Diffstat (limited to 'src/backend/executor')
-rw-r--r--src/backend/executor/execGrouping.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/backend/executor/execGrouping.c b/src/backend/executor/execGrouping.c
index f6c3e4cbde4..009d27b9a80 100644
--- a/src/backend/executor/execGrouping.c
+++ b/src/backend/executor/execGrouping.c
@@ -3,10 +3,6 @@
* execGrouping.c
* executor utility routines for grouping, hashing, and aggregation
*
- * Note: we currently assume that equality and hashing functions are not
- * collation-sensitive, so the code in this file has no support for passing
- * collation settings through from callers. That may have to change someday.
- *
* Portions Copyright (c) 1996-2020, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
@@ -28,8 +24,9 @@
static int TupleHashTableMatch(struct tuplehash_hash *tb, const MinimalTuple tuple1, const MinimalTuple tuple2);
static uint32 TupleHashTableHash_internal(struct tuplehash_hash *tb,
const MinimalTuple tuple);
-static TupleHashEntry LookupTupleHashEntry_internal(
- TupleHashTable hashtable, TupleTableSlot *slot, bool *isnew, uint32 hash);
+static TupleHashEntry LookupTupleHashEntry_internal(TupleHashTable hashtable,
+ TupleTableSlot *slot,
+ bool *isnew, uint32 hash);
/*
* Define parameters for tuple hash table code generation. The interface is