Fix redefinition of type in commit e0ece2a981.
authorJeff Davis <[email protected]>
Sat, 11 Jan 2025 01:45:27 +0000 (17:45 -0800)
committerJeff Davis <[email protected]>
Sat, 11 Jan 2025 01:45:27 +0000 (17:45 -0800)
src/backend/executor/execGrouping.c

index 40f1776a7bea0db15de663744176761426224352..077502539633289d925d32d8a91b65b1dc6b6934 100644 (file)
 #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,