bvolpato opened a new issue, #17654: URL: https://github.com/apache/datafusion/issues/17654
### Is your feature request related to a problem or challenge? Substrait consumer/producer don't currently support time literals. For example: ```sql SELECT TIME '12:34:56.789123'; ``` This works just fine on [datafusion-fiddle](https://datafusion-fiddle.vercel.app?q=eyJzdGF0ZW1lbnQiOiJTRUxFQ1QgVElNRSAnMTI6MzQ6NTYuNzg5MTIzJyBhcyB0aW1lX2NvbCIsImRpc3RyaWJ1dGVkIjpmYWxzZX0=) But in the Substrait path: ```rust #[tokio::test] async fn roundtrip_literal_time() -> Result<()> { roundtrip("SELECT TIME '12:34:56.789123' as time_col from data").await } ``` We get ``` Error: NotImplemented("Unsupported literal: Time64Nanosecond(\"45296789123000\")") ``` ### Describe the solution you'd like _No response_ ### Describe alternatives you've considered _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: github-unsubscr...@datafusion.apache.org.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