File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed
Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change 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 *
2824static int TupleHashTableMatch (struct tuplehash_hash * tb , const MinimalTuple tuple1 , const MinimalTuple tuple2 );
2925static 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
You can’t perform that action at this time.
0 commit comments