Azure / pykusto

Query Kusto like a pro from the comfort of your Jupyter notebook

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add a convenient syntactic suger for joining using multiple columns

ofrikleinfeld opened this issue · comments

The current syntax for joining using multiple columns is something like that:
some_query.join(some_other_query).on(some_col).on(some_other_col)

The desired syntax should be more natural. For example, something like:
some_query.join(some_other_query).on([some_col, some_other_col])