mustafasrepo opened a new issue, #9179:
URL: https://github.com/apache/arrow-datafusion/issues/9179

   ### Describe the bug
   
   The query
   ```sql
   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). 
   
   ### To Reproduce
   
   _No response_
   
   ### Expected behavior
   
   _No response_
   
   ### Additional context
   
   _No response_


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to