Describe the bug
Working with the new util crate finally and I hit a minor snag. Attempting to use datafusion_python_util::to_datafusion_err; results in a function to_datafusion_err is private. Luckily it can just be imported from the nested errors module.
To Reproduce
use datafusion_python_util::to_datafusion_err;
Expected behavior
I'm not entirely sure on this one. I could go either way on making the import in lib.rs a pub use here or we could remove the use completely to avoid the symbol existing so that the standard is to use from the errors module.
Additional context
That pretty much sums it up.
Describe the bug
Working with the new util crate finally and I hit a minor snag. Attempting to
use datafusion_python_util::to_datafusion_err;results in afunction to_datafusion_erris private. Luckily it can just be imported from the nested errors module.To Reproduce
Expected behavior
I'm not entirely sure on this one. I could go either way on making the import in
lib.rsapub usehere or we could remove theusecompletely to avoid the symbol existing so that the standard is tousefrom the errors module.Additional context
That pretty much sums it up.