You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For the special case when the ToList struct eltype isn't strict, we call: data = arrowvector(flat, i, nl + 1, fi, de, ded, nothing; lareglists=largelists, kw...)
I believe it should be: data = arrowvector(flat, i, nl + 1, fi, de, ded, nothing; largelists=largelists, kw...)
There is no kwarg lareglists.
It doesn't throw any errors, because mistyped kwarg is just passed around within kw...
The same "typo" exists for Map types, so I suspect it might be intentional way to pass the information downstream but it's unclear to me why / to what, as no function actually uses this kwarg.
The text was updated successfully, but these errors were encountered:
Fix is up; thanks for catching this: #467. It's not a largely used feature because it's a testing feature to force to use a larger integer type for list offsets instead of the default smaller when tables have reasonable # of elements.
I believe I've noticed a typo in passing kwargs of arrowvector.
For the special case when the ToList struct eltype isn't strict, we call:
data = arrowvector(flat, i, nl + 1, fi, de, ded, nothing; lareglists=largelists, kw...)
I believe it should be:
data = arrowvector(flat, i, nl + 1, fi, de, ded, nothing; largelists=largelists, kw...)
There is no kwarg
lareglists
.It doesn't throw any errors, because mistyped kwarg is just passed around within
kw...
The same "typo" exists for Map types, so I suspect it might be intentional way to pass the information downstream but it's unclear to me why / to what, as no function actually uses this kwarg.
The text was updated successfully, but these errors were encountered: