@@ -315,7 +315,7 @@ BuildTupleHashTable(int numCols, AttrNumber *keyColIdx,
315315hashtable -> cur_eq_funcs = NULL ;
316316
317317hashtable -> hashtab = tuplehash_create (tablecxt ,nbuckets );
318- hashtable -> hashtab -> private = hashtable ;
318+ hashtable -> hashtab -> private_data = hashtable ;
319319
320320return hashtable ;
321321}
@@ -447,7 +447,7 @@ FindTupleHashEntry(TupleHashTable hashtable, TupleTableSlot *slot,
447447static uint32
448448TupleHashTableHash (struct tuplehash_hash * tb ,const MinimalTuple tuple )
449449{
450- TupleHashTable hashtable = (TupleHashTable )tb -> private ;
450+ TupleHashTable hashtable = (TupleHashTable )tb -> private_data ;
451451int numCols = hashtable -> numCols ;
452452AttrNumber * keyColIdx = hashtable -> keyColIdx ;
453453uint32 hashkey = 0 ;
@@ -511,7 +511,7 @@ TupleHashTableMatch(struct tuplehash_hash *tb, const MinimalTuple tuple1, const
511511{
512512TupleTableSlot * slot1 ;
513513TupleTableSlot * slot2 ;
514- TupleHashTable hashtable = (TupleHashTable )tb -> private ;
514+ TupleHashTable hashtable = (TupleHashTable )tb -> private_data ;
515515
516516/*
517517 * We assume that simplehash.h will only ever call us with the first