File tree 1 file changed +3
-6
lines changed 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change 3
3
* execGrouping.c
4
4
* executor utility routines for grouping, hashing, and aggregation
5
5
*
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
- *
10
6
* Portions Copyright (c) 1996-2020, PostgreSQL Global Development Group
11
7
* Portions Copyright (c) 1994, Regents of the University of California
12
8
*
28
24
static int TupleHashTableMatch (struct tuplehash_hash * tb , const MinimalTuple tuple1 , const MinimalTuple tuple2 );
29
25
static uint32 TupleHashTableHash_internal (struct tuplehash_hash * tb ,
30
26
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 );
33
30
34
31
/*
35
32
* Define parameters for tuple hash table code generation. The interface is
You can’t perform that action at this time.
0 commit comments