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
{{ message }}
This repository has been archived by the owner on Sep 18, 2023. It is now read-only.
Describe the bug
We do a WSCG check in ColumnarShuffledHashJoinExec. But only check the condition, not leftKeys and rightKeys check.
For ExsitingJoin, the condition is null, and there are only leftKeys and rightKeys, which leads to function is currently not supported in WSCG.
To Reproduce
select * from table as t1 where concat(t1.a, "_", t1.b) in (select concat(t2.a, "_", t2.b) from table as t2)
Expected behavior
No Exception thrown and using WSCG if function doesn't support WSCG.
Additional context
None
The text was updated successfully, but these errors were encountered:
Describe the bug
We do a WSCG check in ColumnarShuffledHashJoinExec. But only check the condition, not leftKeys and rightKeys check.
For ExsitingJoin, the condition is null, and there are only leftKeys and rightKeys, which leads to
function is currently not supported in WSCG
.To Reproduce
Expected behavior
No Exception thrown and using WSCG if function doesn't support WSCG.
Additional context
None
The text was updated successfully, but these errors were encountered: