You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by "alamb (via GitHub)" <gi...@apache.org> on 2024/03/12 16:37:55 UTC

[I] make UDFs in datafusion-functions public [arrow-datafusion]

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: github-unsubscribe@arrow.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [I] make UDFs in datafusion-functions public [arrow-datafusion]

Posted by "jayzhan211 (via GitHub)" <gi...@apache.org>.
jayzhan211 closed issue #9584: make UDFs in datafusion-functions public
URL: https://github.com/apache/arrow-datafusion/issues/9584


-- 
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-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org