-
Notifications
You must be signed in to change notification settings - Fork 368
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sync metadata implementation with DataAPI.jl 1.12.0 #3189
Conversation
src/other/metadata.jl
Outdated
end | ||
emptycolmetadata!(dst) | ||
DataAPI.colmetadatasupport(typeof(src)).read || return nothing |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use an if
for consistency with above?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK. I have changed short-circut to if
s everywhere then. After CI passes I will merge this PR.
Then I will wait one day to wait for final responses, and will make a release of DataFrames.jl 1.4 tomorrow if there are none.
Nice cleanup! |
Co-authored-by: Milan Bouchet-Valat <nalimilan@club.fr>
Thank you! |
This PR should be passed through CI after JuliaData/DataAPI.jl#53 is merged and DataAPI.jl 1.12.0 is released. Other than that it should be complete (not tested, but the changes are minor - mostly simplification of the code because of dropped default implementations + adding support for
default
).