| Modifier and Type | Method and Description |
|---|---|
Table |
fullJoin(Table.TableOperation rightJoinIndices)
Joins two tables on the join columns that are passed in.
|
Table |
fullJoin(Table.TableOperation rightJoinIndices,
boolean compareNullsEqual)
Joins two tables on the join columns that are passed in.
|
PartitionedTable |
hashPartition(HashType type,
int numberOfPartitions)
Hash partition a table into the specified number of partitions.
|
PartitionedTable |
hashPartition(int numberOfPartitions)
Hash partition a table into the specified number of partitions.
|
Table |
innerJoin(Table.TableOperation rightJoinIndices)
Joins two tables on the join columns that are passed in.
|
Table |
innerJoin(Table.TableOperation rightJoinIndices,
boolean compareNullsEqual)
Joins two tables on the join columns that are passed in.
|
Table |
leftAntiJoin(Table.TableOperation rightJoinIndices)
Performs an anti-join between a left table and a right table, returning only the rows from
the left table that do not match rows in the right table on the join keys.
|
Table |
leftAntiJoin(Table.TableOperation rightJoinIndices,
boolean compareNullsEqual)
Performs an anti-join between a left table and a right table, returning only the rows from
the left table that do not match rows in the right table on the join keys.
|
Table |
leftJoin(Table.TableOperation rightJoinIndices)
Joins two tables on the join columns that are passed in.
|
Table |
leftJoin(Table.TableOperation rightJoinIndices,
boolean compareNullsEqual)
Joins two tables on the join columns that are passed in.
|
Table |
leftSemiJoin(Table.TableOperation rightJoinIndices)
Performs a semi-join between a left table and a right table, returning only the rows from
the left table that match rows in the right table on the join keys.
|
Table |
leftSemiJoin(Table.TableOperation rightJoinIndices,
boolean compareNullsEqual)
Performs a semi-join between a left table and a right table, returning only the rows from
the left table that match rows in the right table on the join keys.
|
PartitionedTable |
partition(int numberOfPartitions)
Deprecated.
|
public Table leftJoin(Table.TableOperation rightJoinIndices, boolean compareNullsEqual)
rightJoinIndices - - Indices of the right table to join oncompareNullsEqual - - Whether null join-key values should match or not.public Table leftJoin(Table.TableOperation rightJoinIndices)
rightJoinIndices - - Indices of the right table to join onpublic Table innerJoin(Table.TableOperation rightJoinIndices, boolean compareNullsEqual)
rightJoinIndices - - Indices of the right table to join oncompareNullsEqual - - Whether null join-key values should match or not.public Table innerJoin(Table.TableOperation rightJoinIndices)
rightJoinIndices - - Indices of the right table to join onpublic Table fullJoin(Table.TableOperation rightJoinIndices, boolean compareNullsEqual)
rightJoinIndices - - Indices of the right table to join oncompareNullsEqual - - Whether null join-key values should match or not.public Table fullJoin(Table.TableOperation rightJoinIndices)
rightJoinIndices - - Indices of the right table to join onpublic Table leftSemiJoin(Table.TableOperation rightJoinIndices, boolean compareNullsEqual)
rightJoinIndices - - Indices of the right table to join oncompareNullsEqual - - Whether null join-key values should match or not.public Table leftSemiJoin(Table.TableOperation rightJoinIndices)
rightJoinIndices - - Indices of the right table to join onpublic Table leftAntiJoin(Table.TableOperation rightJoinIndices, boolean compareNullsEqual)
rightJoinIndices - - Indices of the right table to join oncompareNullsEqual - - Whether null join-key values should match or not.public Table leftAntiJoin(Table.TableOperation rightJoinIndices)
rightJoinIndices - - Indices of the right table to join onpublic PartitionedTable hashPartition(int numberOfPartitions)
numberOfPartitions - - number of partitions to usePartitionedTable - Table that exposes a limited functionality of the
Table classpublic PartitionedTable hashPartition(HashType type, int numberOfPartitions)
type - the type of hash to use. Depending on the type of hash different restrictions
on the hash column(s) may exist. Not all hash functions are guaranteed to work
besides IDENTITY and MURMUR3.numberOfPartitions - - number of partitions to usePartitionedTable - Table that exposes a limited functionality of the
Table class@Deprecated public PartitionedTable partition(int numberOfPartitions)
hashPartition(int)numberOfPartitions - - number of partitions to usePartitionedTable - Table that exposes a limited functionality of the
Table classCopyright © 2021. All rights reserved.