mirror of
https://github.com/postgres/postgres.git
synced 2025-07-09 22:41:56 +03:00
Remove obsolete comment.
Noted while studying subplan hash issue.
This commit is contained in:
@ -3,10 +3,6 @@
|
|||||||
* execGrouping.c
|
* execGrouping.c
|
||||||
* executor utility routines for grouping, hashing, and aggregation
|
* 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) 1996-2020, PostgreSQL Global Development Group
|
||||||
* Portions Copyright (c) 1994, Regents of the University of California
|
* 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 int TupleHashTableMatch(struct tuplehash_hash *tb, const MinimalTuple tuple1, const MinimalTuple tuple2);
|
||||||
static uint32 TupleHashTableHash_internal(struct tuplehash_hash *tb,
|
static uint32 TupleHashTableHash_internal(struct tuplehash_hash *tb,
|
||||||
const MinimalTuple tuple);
|
const MinimalTuple tuple);
|
||||||
static TupleHashEntry LookupTupleHashEntry_internal(
|
static TupleHashEntry LookupTupleHashEntry_internal(TupleHashTable hashtable,
|
||||||
TupleHashTable hashtable, TupleTableSlot *slot, bool *isnew, uint32 hash);
|
TupleTableSlot *slot,
|
||||||
|
bool *isnew, uint32 hash);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Define parameters for tuple hash table code generation. The interface is
|
* Define parameters for tuple hash table code generation. The interface is
|
||||||
|
Reference in New Issue
Block a user