-
Notifications
You must be signed in to change notification settings - Fork 142
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
StringArray columns returned when no pulling #435
Comments
Another problem with |
AFAIK this has just been fixed by JuliaData/WeakRefStrings.jl#61. Regarding the memory issues, maybe |
Excellent! |
@quinnj Here is a list of methods that we should support if possible to be consistent with
|
|
Right. I missed it, because it does not have |
We need to make sure PooledArray/CategoricalArray support all those too, right? |
Yes. See JuliaData/PooledArrays.jl#23, JuliaData/CategoricalArrays.jl#192 and JuliaLang/julia#32065. It seems that |
I think the main issues here are all resolved now (missing mutation methods for custom arrays) |
By default when the column contains strings and pulling is disabled the type of returned column is
WeakRefStrings.StringArray{String,1}
. This has two consequences:Vector{String}
There are two things I would propose:
Vector{String}
in the output.The text was updated successfully, but these errors were encountered: