Skip to content
This repository has been archived by the owner on Sep 18, 2023. It is now read-only.

Missing WSCG check for ExistenceJoin #1032

Closed
jackylee-ch opened this issue Jul 19, 2022 · 1 comment
Closed

Missing WSCG check for ExistenceJoin #1032

jackylee-ch opened this issue Jul 19, 2022 · 1 comment
Labels
bug Something isn't working

Comments

@jackylee-ch
Copy link
Contributor

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

@jackylee-ch jackylee-ch added the bug Something isn't working label Jul 19, 2022
@PHILO-HE
Copy link
Collaborator

Fixed.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants