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
A LargeList(Struct({"foo": LargeUtf8})) cannot be coerced to List(Struct({"foo": Utf8})). It however it works fine for LargeList(LargeUtf8) -> List(Utf8) and Struct({"foo": LargeUtf8}) -> Struct({"foo": Utf8}).
Describe the bug
A
LargeList(Struct({"foo": LargeUtf8})
) cannot be coerced toList(Struct({"foo": Utf8}))
. It however it works fine forLargeList(LargeUtf8) -> List(Utf8)
andStruct({"foo": LargeUtf8}) -> Struct({"foo": Utf8})
.To Reproduce
Expected behavior
Be able to coerce Large/view and normal arrow types in deeply nested types.
Additional context
Luckly we still can downcast in python using the large_dtypes=False, but datafusion should be able to coerce any deeply nested dtype.
The text was updated successfully, but these errors were encountered: