Append a join operation to the tbl_kusto object's ops list
add_op_join(
type,
x,
y,
by = NULL,
suffix = NULL,
.strategy = NULL,
.shufflekeys = NULL,
.num_partitions = NULL,
.remote = NULL
)
The name of the join type, one of: inner_join, left_join, right_join, full_join, semi_join, anti_join
The "left" tbl
The "right" tbl
A vector of column names; keys by which tbl x and tbl y will be joined
A vector of strings that will be appended to the names of non-join key columns that exist in both tbl x and tbl y to distinguish them by source tbl.
A strategy hint to provide to Kusto.
A character vector of column names to shuffle on, if .strategy = "shuffle"
.
The number of partitions for a shuffle query.
A strategy hint to provide to Kusto for cross-cluster joins.