@@ -315,7 +315,7 @@ BuildTupleHashTable(int numCols, AttrNumber *keyColIdx,
315
315
hashtable -> cur_eq_funcs = NULL ;
316
316
317
317
hashtable -> hashtab = tuplehash_create (tablecxt ,nbuckets );
318
- hashtable -> hashtab -> private = hashtable ;
318
+ hashtable -> hashtab -> private_data = hashtable ;
319
319
320
320
return hashtable ;
321
321
}
@@ -447,7 +447,7 @@ FindTupleHashEntry(TupleHashTable hashtable, TupleTableSlot *slot,
447
447
static uint32
448
448
TupleHashTableHash (struct tuplehash_hash * tb ,const MinimalTuple tuple )
449
449
{
450
- TupleHashTable hashtable = (TupleHashTable )tb -> private ;
450
+ TupleHashTable hashtable = (TupleHashTable )tb -> private_data ;
451
451
int numCols = hashtable -> numCols ;
452
452
AttrNumber * keyColIdx = hashtable -> keyColIdx ;
453
453
uint32 hashkey = 0 ;
@@ -511,7 +511,7 @@ TupleHashTableMatch(struct tuplehash_hash *tb, const MinimalTuple tuple1, const
511
511
{
512
512
TupleTableSlot * slot1 ;
513
513
TupleTableSlot * slot2 ;
514
- TupleHashTable hashtable = (TupleHashTable )tb -> private ;
514
+ TupleHashTable hashtable = (TupleHashTable )tb -> private_data ;
515
515
516
516
/*
517
517
* We assume that simplehash.h will only ever call us with the first