assertFalse( contains( list, rightTuple ) ); // ensure no duplicate
list.add( rightTuple );
}
// test normal
RightTupleIndexHashTable rthTable = new RightTupleIndexHashTable();
rthTable.init( table, 3, numEntries * 3 );
RightTupleIndexHashTable.FieldIndexHashTableFullIterator iter2 = new RightTupleIndexHashTable.FieldIndexHashTableFullIterator( rthTable );
list = new ArrayList<RightTuple>();
for ( RightTuple rightTuple = (RightTuple) iter2.next( ); rightTuple != null; rightTuple = (RightTuple) iter2.next( ) ) {
assertFalse( contains( list, rightTuple ) ); // ensure no duplicate
list.add( rightTuple );