public class HashJoin extends Object implements AutoCloseable
Constructor and Description |
---|
HashJoin(Table buildKeys,
boolean compareNulls)
Construct a hash table for a join from a table representing the join key columns from the
right-side table in the join.
|
Modifier and Type | Method and Description |
---|---|
void |
close() |
boolean |
getCompareNulls()
Returns true if the hash table was built to match on nulls otherwise false.
|
long |
getNumberOfColumns()
Get the number of join key columns for the table that was used to generate the has table.
|
public HashJoin(Table buildKeys, boolean compareNulls)
buildKeys
- table view containing the join keys for the right-side join tablecompareNulls
- true if null key values should match otherwise falsepublic void close()
close
in interface AutoCloseable
public long getNumberOfColumns()
public boolean getCompareNulls()
Copyright © 2024. All rights reserved.