From: Jeff Davis Date: Sat, 11 Jan 2025 01:45:27 +0000 (-0800) Subject: Fix redefinition of type in commit e0ece2a981. X-Git-Tag: REL_18_BETA1~1126 X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=ceb2855522940d5aaae4c6e5eed493d60e3196ce;p=postgresql.git Fix redefinition of type in commit e0ece2a981. --- diff --git a/src/backend/executor/execGrouping.c b/src/backend/executor/execGrouping.c index 40f1776a7be..07750253963 100644 --- 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,