| Package | Description |
|---|---|
| ai.rapids.cudf |
| Modifier and Type | Method and Description |
|---|---|
Table.TableOperation |
Table.onColumns(int... indices) |
| Modifier and Type | Method and Description |
|---|---|
Table |
Table.TableOperation.fullJoin(Table.TableOperation rightJoinIndices)
Joins two tables on the join columns that are passed in.
|
Table |
Table.TableOperation.fullJoin(Table.TableOperation rightJoinIndices,
boolean compareNullsEqual)
Joins two tables on the join columns that are passed in.
|
Table |
Table.TableOperation.innerJoin(Table.TableOperation rightJoinIndices)
Joins two tables on the join columns that are passed in.
|
Table |
Table.TableOperation.innerJoin(Table.TableOperation rightJoinIndices,
boolean compareNullsEqual)
Joins two tables on the join columns that are passed in.
|
Table |
Table.TableOperation.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 |
Table.TableOperation.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 |
Table.TableOperation.leftJoin(Table.TableOperation rightJoinIndices)
Joins two tables on the join columns that are passed in.
|
Table |
Table.TableOperation.leftJoin(Table.TableOperation rightJoinIndices,
boolean compareNullsEqual)
Joins two tables on the join columns that are passed in.
|
Table |
Table.TableOperation.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 |
Table.TableOperation.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.
|
Copyright © 2022. All rights reserved.