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

   ### Describe the bug
   
   DataFusion has re-exports for datafusion-functions and 
datafusion-functions-array but they both export datafusion-functions:
   
   ```rust
   /// re-export of [`datafusion_functions`] crate
   pub mod functions {
       pub use datafusion_functions::*;
   }
   
   /// re-export of [`datafusion_functions_array`] crate, if 
"array_expressions" feature is enabled
   pub mod functions_array {
       #[cfg(feature = "array_expressions")]
       pub use datafusion_functions::*;
   }
   ```
   
   ### 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]

Reply via email to