Weijun-H commented on issue #7802:
URL: 
https://github.com/apache/arrow-datafusion/issues/7802#issuecomment-1759180407

   ```rust
   /// to_timestamp SQL function
   pub fn to_timestamp(args: &[ColumnarValue]) -> Result<ColumnarValue> {
       handle::<TimestampNanosecondType, _, TimestampNanosecondType>(
           args,
           string_to_timestamp_nanos_shim,
           "to_timestamp",
       )
   }
   ```
   
   The problem is that the function 'to_timestamp' treats all input as 'nano', 
which is causing an issue.


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

Reply via email to