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:
@ -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,
|
||||
|
Reference in New Issue
Block a user