andygrove commented on issue #15676:
URL: https://github.com/apache/datafusion/issues/15676#issuecomment-2794909458

   I confirmed that the behavior in DataFusion also changed when #15542 was 
merged.
   
   ## Before
   
   ```
   query III
   SELECT y, FIRST_VALUE(x), LAST_VALUE(x)
   FROM FOO
   GROUP BY y
   ORDER BY y;
   ----
   2 1 1
   3 2 1
   ```
   
   ## After 
   
   ```
   query III
   SELECT y, FIRST_VALUE(x), LAST_VALUE(x)
   FROM FOO
   GROUP BY y
   ORDER BY y;
   ----
   2 1 1
   3 2 2
   ```


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

Reply via email to