You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
Users should be able to use the Dataframe API to expression the following SQL queries:
SELECT * FROM fact JOIN dim ON fact.x != dim.y;
SELECT * FROM fact JOIN dim ON fact.x > dim.y;
SELECT * FROM fact JOIN dim ON fact.x <= dim.y;
SELECT * FROM fact JOIN dim ON fact.x <> dim.y;
Describe the solution you'd like
Potential solution would be changing the join method to take a list of expressions instead of left_cols and right_cols.
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
Users should be able to use the Dataframe API to expression the following SQL queries:
Describe the solution you'd like
Potential solution would be changing the join method to take a list of expressions instead of
left_cols
andright_cols
.Additional context
Extension of #1135
The text was updated successfully, but these errors were encountered: