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

[VL] Diff of in_or_and #7362

Open
zml1206 opened this issue Sep 26, 2024 · 2 comments · May be fixed by #7363
Open

[VL] Diff of in_or_and #7362

zml1206 opened this issue Sep 26, 2024 · 2 comments · May be fixed by #7363
Assignees
Labels
bug Something isn't working triage

Comments

@zml1206
Copy link
Contributor

zml1206 commented Sep 26, 2024

Backend

VL (Velox)

Bug description

select count(1) from lineitem
where (l_shipmode in ('TRUCK', 'MAIL') or l_shipmode in ('AIR', 'FOB')) 
and l_shipmode in ('RAIL','SHIP')

vanilla spark is 0, gluten have the same results with sql

select count(1) from lineitem
where l_shipmode in ('TRUCK', 'MAIL') or l_shipmode in ('AIR', 'FOB')
or l_shipmode in ('RAIL','SHIP')

Spark version

None

Spark configurations

No response

System information

No response

Relevant logs

No response

@rui-mo
Copy link
Contributor

rui-mo commented Sep 27, 2024

@zml1206 I will take a look. Thanks.

@zml1206
Copy link
Contributor Author

zml1206 commented Sep 27, 2024

I have submitted a PR #7363 to resolve it. @rui-mo

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

Successfully merging a pull request may close this issue.

2 participants