-
Notifications
You must be signed in to change notification settings - Fork 64
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
Error with v2.6.0 #458
Comments
you probably manually asserted (initialized) |
hmm, I hit this in a much more general case -- I convert to Arrow and read back, and it works. But some how it hits this thing during |
yeah ok this seems super broken now @quinnj julia> vector_vector_int = [[[1]], [[1], [2]], [[1], [2], [3]], [[1], [2], [3], [4]], [[1], [2], [3], [4], [5]]]
5-element Vector{Vector{Vector{Int64}}}:
...
julia> df = DataFrame(; vector_vector_int)
5×1 DataFrame
Row │ vector_vector_int
│ Array…
─────┼───────────────────────────
1 │ [[1]]
2 │ [[1], [2]]
3 │ [[1], [2], [3]]
4 │ [[1], [2], [3], [4]]
5 │ [[1], [2], [3], [4], [5]]
julia> Arrow.write(path, df)
"/tmp/jl_i5KrCRaB6b"
julia> DataFrame(Arrow.Table(path))
Error showing value of type DataFrame:
ERROR: MethodError: no method matching SubArray{Vector{Int64}, 1, Arrow.List{SubArray{Int64, 1, Arrow.Primitive{Int64, Vector{Int64}}, Tuple{UnitRange{Int64}}, true}, Int32, Arrow.Primitive{Int64, Vector{Int64}}}, Tuple{UnitRange{Int64}}, true}(::SubArray{SubArray{Int64, 1, Arrow.Primitive{Int64, Vector{Int64}}, Tuple{UnitRange{Int64}}, true}, 1, Arrow.List{SubArray{Int64, 1, Arrow.Primitive{Int64, Vector{Int64}}, Tuple{UnitRange{Int64}}, true}, Int32, Arrow.Primitive{Int64, Vector{Int64}}}, Tuple{UnitRange{Int64}}, true})
Closest candidates are:
SubArray{T, N, P, I, L}(::Any, ::Any, ::Any, ::Any) where {T, N, P, I, L}
@ Base subarray.jl:19 |
I’ve been working to come up with a simple reproducible example. Been tied up with some other stuff today but hope to spend more time tonight and tomorrow. Will let you know as soon as I have something. Thanks, all. |
Ok, I have a fix for @Moelf's issue here: #459. I think we also have a good fix for @baumgold's issue, so let's merge those 2 and get a new release kicked off. These errors are involving pretty complicated types, so it doesn't seem worth reverting/yanking anything IMO, let's just move forward with a patch fix. |
Fixed in #456 |
After upgrading to Arrow v2.6.0 I get the following error in one of my apps:
The text was updated successfully, but these errors were encountered: