jayzhan211 commented on issue #12185:
URL: https://github.com/apache/datafusion/issues/12185#issuecomment-2311631050

   try adding `rowsort` for this kind of undeterministic query
   
   ```
   query IPT rowsort
   SELECT
     count,
     LAG(timestamp, 1) OVER (ORDER BY timestamp),
     arrow_typeof(LAG(timestamp, 1) OVER (ORDER BY timestamp))
   FROM timestamp_with_tz
   LIMIT 10;
   ----
   ```


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