Skip to content

Commit ceb2855

Browse files
committed
Fix redefinition of type in commit e0ece2a.
1 parent e0ece2a commit ceb2855

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/executor/execGrouping.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@
2020
#include "miscadmin.h"
2121
#include "utils/lsyscache.h"
2222

23-
typedef struct TupleHashEntryData
23+
struct TupleHashEntryData
2424
{
2525
MinimalTuple firstTuple; /* copy of first tuple in this group */
2626
uint32 status; /* hash status */
2727
uint32 hash; /* hash value (cached) */
28-
} TupleHashEntryData;
28+
};
2929

3030
static int TupleHashTableMatch(struct tuplehash_hash *tb, const MinimalTuple tuple1, const MinimalTuple tuple2);
3131
static inline uint32 TupleHashTableHash_internal(struct tuplehash_hash *tb,

0 commit comments

Comments
 (0)