8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0ece2a commit ceb2855Copy full SHA for ceb2855
src/backend/executor/execGrouping.c
@@ -20,12 +20,12 @@
20
#include "miscadmin.h"
21
#include "utils/lsyscache.h"
22
23
-typedef struct TupleHashEntryData
+struct TupleHashEntryData
24
{
25
MinimalTuple firstTuple; /* copy of first tuple in this group */
26
uint32 status; /* hash status */
27
uint32 hash; /* hash value (cached) */
28
-} TupleHashEntryData;
+};
29
30
static int TupleHashTableMatch(struct tuplehash_hash *tb, const MinimalTuple tuple1, const MinimalTuple tuple2);
31
static inline uint32 TupleHashTableHash_internal(struct tuplehash_hash *tb,
0 commit comments