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
{{ message }}
This repository was archived by the owner on Nov 22, 2022. It is now read-only.
Unfortunately decorators for Pandas scalar udf overlap unsafely between scalar-to-scalar and scalar-to-struct variants. The culprit is return type:
Union[AtomicDataTypeOrString, ArrayType]
Union[StructType, str]
and
OrString
(inAtomicDataTypeOrString
) ansstr
cause overlap.One possible solution is to disallow
str
schema for on of these, preferably scalar-to-scalar:The text was updated successfully, but these errors were encountered: