andygrove commented on issue #15676: URL: https://github.com/apache/datafusion/issues/15676#issuecomment-2794874385
The following query previously produced different values for `FIRST` and `LAST` but now produces the same value for both. ```sql SELECT _g1, _g2, FIRST(_3), LAST(_3) FROM v GROUP BY _g1, _g2 ORDER BY _g1, _g2 ``` Before: ``` [0,0,0,9] ``` After ``` [0,0,0,0] ``` -- 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: github-unsubscr...@datafusion.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For additional commands, e-mail: github-h...@datafusion.apache.org