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
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
The text was updated successfully, but these errors were encountered:
Describe the bug
The query
in the
sort_merge_join.slt
file fails in my PC.Its expected result is
However, it produces following result
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 eitherHashJoin
orSortMergeJoin
is used in for join.) Hence the problem might be related to the left join implementation ofSortMergeJoin
To Reproduce
No response
Expected behavior
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: