projects
/
users
/
c2main
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e0ece2a
)
Fix redefinition of type in commit e0ece2a981.
author
Jeff Davis
<jdavis@postgresql.org>
Sat, 11 Jan 2025 01:45:27 +0000
(17:45 -0800)
committer
Jeff Davis
<jdavis@postgresql.org>
Sat, 11 Jan 2025 01:45:27 +0000
(17:45 -0800)
src/backend/executor/execGrouping.c
patch
|
blob
|
blame
|
history
diff --git
a/src/backend/executor/execGrouping.c
b/src/backend/executor/execGrouping.c
index 40f1776a7bea0db15de663744176761426224352..077502539633289d925d32d8a91b65b1dc6b6934 100644
(file)
--- a/
src/backend/executor/execGrouping.c
+++ b/
src/backend/executor/execGrouping.c
@@
-20,12
+20,12
@@
#include "miscadmin.h"
#include "utils/lsyscache.h"
-
typedef
struct TupleHashEntryData
+struct TupleHashEntryData
{
MinimalTuple firstTuple; /* copy of first tuple in this group */
uint32 status; /* hash status */
uint32 hash; /* hash value (cached) */
-}
TupleHashEntryData
;
+};
static int TupleHashTableMatch(struct tuplehash_hash *tb, const MinimalTuple tuple1, const MinimalTuple tuple2);
static inline uint32 TupleHashTableHash_internal(struct tuplehash_hash *tb,