https://delta.io logo
r

rtyler

06/08/2023, 1:00 AM
Datafusion 26 is out and I've started the work to upgrade to that and arrow 40 + object_store 0.6.0. Unfortunately there are some API changes (
CastOptions
) which may cause us to need to have some API changes as well (lifetimes were introduced which is tripping me up). 🙍
d

David Blajda

06/08/2023, 1:22 AM
Oh that's annoying and I just introduced that struct too. For our public interface we can replace the struct with a bool called safe_cast and just build
CastOptions
where we actually cast.
r

rtyler

06/08/2023, 1:58 AM
I like that idea