Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

simplify_expr() invoke nullable() exist bug #5191

Closed
jackwener opened this issue Feb 6, 2023 · 0 comments · Fixed by #5208
Closed

simplify_expr() invoke nullable() exist bug #5191

jackwener opened this issue Feb 6, 2023 · 0 comments · Fixed by #5208
Assignees
Labels
bug Something isn't working

Comments

@jackwener
Copy link
Member

Describe the bug
When invoke nullable(), if plan is semi/anti join, all_schema() only just contain one side child output.
If we want to compute expr, it will fail.
like:

t1 semi join t2 on t1.id = t2.id

due to schema just is [t1.id] (join), [t1.id](left) , [t2.id] (right).

so t1.id = t2.id can't invoke nullable()

To Reproduce
Steps to reproduce the behavior:

Expected behavior
A clear and concise description of what you expected to happen.

Additional context
Add any other context about the problem here.

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

Successfully merging a pull request may close this issue.

1 participant