zhouyifan279 commented on PR #5544:
URL: 
https://github.com/apache/incubator-gluten/pull/5544#issuecomment-2106285804

   I found the result still not right after applying this patch.
   Run SQL:
   ```
   set spark.sql.leafNodeDefaultParallelism=2;
   select min_by(a, b), max_by(a, b) from values (5, 6), (null, 11), (null, 5) 
test(a, b);
   ```
   Expected result is
   ```
   NULL    NULL
   ```
   Actual result is 
   ```
   5      5
   ```


-- 
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]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to