Skip to content
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

Incorrect syntax in ArrowTypes code #453

Closed
ericphanson opened this issue Jun 6, 2023 · 2 comments · Fixed by #454
Closed

Incorrect syntax in ArrowTypes code #453

ericphanson opened this issue Jun 6, 2023 · 2 comments · Fixed by #454

Comments

@ericphanson
Copy link
Member

arrowmetadata(::Type{Union{T,Missing}}) where {T} = arrowmetadata{T}
arrowmetadata(::Type{Union{T,Nothing}}) where {T} = arrowmetadata{T}

I think this should be

 arrowmetadata(::Type{Union{T,Missing}}) where {T} = arrowmetadata(T)
 arrowmetadata(::Type{Union{T,Nothing}}) where {T} = arrowmetadata(T) 
@Moelf
Copy link
Contributor

Moelf commented Jun 6, 2023

We need CI coverage I guess

baumgold added a commit to baumgold/arrow-julia that referenced this issue Jun 6, 2023
@baumgold
Copy link
Member

baumgold commented Jun 6, 2023

@ericphanson - good catch. #453 for the fix. Apologies for the inconvenience.

baumgold added a commit that referenced this issue Jun 6, 2023
I introduced this bug in #389 - my apologies.  Fixes #453.
baumgold added a commit that referenced this issue Jun 6, 2023
Includes the bug-fix from #453 / #454
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants