1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-23 14:01:44 +03:00

Fix redefinition of type in commit e0ece2a981.

This commit is contained in:
Jeff Davis
2025-01-10 17:45:27 -08:00
parent e0ece2a981
commit ceb2855522

View File

@ -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,