From: Jeff Davis Date: Sat, 11 Jan 2025 01:45:27 +0000 (-0800) Subject: Fix redefinition of type in commit e0ece2a981. X-Git-Url: http://git.postgresql.org/gitweb/static/connections.php?a=commitdiff_plain;h=ceb2855522940d5aaae4c6e5eed493d60e3196ce;p=users%2Fc2main%2Fpostgres.git Fix redefinition of type in commit e0ece2a981. --- diff --git a/src/backend/executor/execGrouping.c b/src/backend/executor/execGrouping.c index 40f1776a7b..0775025396 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,