diff options
author | Jeff Davis <jdavis@postgresql.org> | 2025-01-10 17:45:27 -0800 |
---|---|---|
committer | Jeff Davis <jdavis@postgresql.org> | 2025-01-10 17:45:27 -0800 |
commit | ceb2855522940d5aaae4c6e5eed493d60e3196ce (patch) | |
tree | e75b01015e7e9257b5ddb3370c999565f0944330 /src/backend/executor/execGrouping.c | |
parent | e0ece2a981ee9068f50c4423e303836c2585eb02 (diff) | |
download | postgresql-ceb2855522940d5aaae4c6e5eed493d60e3196ce.tar.gz postgresql-ceb2855522940d5aaae4c6e5eed493d60e3196ce.zip |
Fix redefinition of type in commit e0ece2a981.
Diffstat (limited to 'src/backend/executor/execGrouping.c')
-rw-r--r-- | src/backend/executor/execGrouping.c | 4 |
1 files changed, 2 insertions, 2 deletions
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, |