alamb opened a new issue, #9584:
URL: https://github.com/apache/arrow-datafusion/issues/9584

   ### Is your feature request related to a problem or challenge?
   
   
   We have a special wrapper over `to_timestamp` that has influxdb specific 
semantics, but falls back to the built in implementation of to_timestamp.
   
   Now that `to_timestamp` has been extracted from the core, the only way I 
could find this UDF was by checking by name
   
   ```rust
      // Find DataFusion's built in to_timestamp implementation
      let fallback = datafusion::functions::datetime::functions()
        .into_iter()
        .find(|f| f.name() == "to_timestamp")
        .expect("to_timestamp function not found"),
   ```
   
   
   
   ### Describe the solution you'd like
   
   It would be nice if I could simply get the `to_timestamp` function directly 
as I know exactly what implementation I want, but I can't as it is not `pub`
   
   
   ### 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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to