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

Query Fails in MAC M1 #9179

Closed
mustafasrepo opened this issue Feb 9, 2024 · 0 comments · Fixed by #9163
Closed

Query Fails in MAC M1 #9179

mustafasrepo opened this issue Feb 9, 2024 · 0 comments · Fixed by #9163
Assignees
Labels
bug Something isn't working

Comments

@mustafasrepo
Copy link
Contributor

mustafasrepo commented Feb 9, 2024

Describe the bug

The query

SELECT t1_id, t1_int, t2_int FROM t1 LEFT JOIN t2 ON t1_id = t2_id AND t1_int >= t2_int

in the sort_merge_join.slt file fails in my PC.
Its expected result is

11 1 NULL
22 2 1
33 3 NULL
44 4 3

However, it produces following result

11 1 NULL
22 2 1
44 4 3

It seems like CI works without failing. Hence it might be related to my PC (MAC M1).
Exactly same query under join.slt file works as expected. (Where only difference is either HashJoin or SortMergeJoin is used in for join.) Hence the problem might be related to the left join implementation of SortMergeJoin

To Reproduce

No response

Expected behavior

No response

Additional context

No response

@mustafasrepo mustafasrepo added the bug Something isn't working label Feb 9, 2024
@viirya viirya self-assigned this Feb 9, 2024
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.

2 participants