adriangb opened a new issue, #17512:
URL: https://github.com/apache/datafusion/issues/17512

   ### Describe the bug
   
   ```sql
   COPY (
       SELECT arrow_cast('2025-01-01T00:00:00Z'::timestamptz, 
'Timestamp(Microsecond, Some("UTC"))') AS start_timestamp
   )
   TO 'records.parquet'
   STORED AS PARQUET;
   
   CREATE EXTERNAL TABLE records STORED AS PARQUET LOCATION 'records.parquet';
   
   SELECT 1
   FROM (
       SELECT start_timestamp
       FROM records
       WHERE start_timestamp <= '2025-01-01T00:00:00Z'::timestamptz
   ) AS t
   WHERE t.start_timestamp::time < '00:00:01'::time;
   ```
   
   This has been failing since #16624 although it seems this PR just exposed 
the bug, it didn't create it . cc @findepi for confirmation.
   
   ### 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]


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

Reply via email to