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
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
Working on the #8082 and trying to use variant_get kernel with cast_as = utf8 option gave me an error "Not a primitive type: Utf8" during arrow_to_variant conversion.
Describe the solution you'd like
We need to implement arrow_to_variant support for all other primitive and non-primitive types.
These include:
Primitive:
Map| Union - seens to be intentionally not supported by canonicalize_and_verify_data_type in VariantArray, but maybe still could be an output of variant_get/variant_to_arrow
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
Working on the #8082 and trying to use
variant_getkernel withcast_as = utf8option gave me an error"Not a primitive type: Utf8"during arrow_to_variant conversion.Describe the solution you'd like
We need to implement arrow_to_variant support for all other primitive and non-primitive types.
These include:
Primitive:
Decimal32/64/128/256#8552Non-primitive:
DataType::{Binary/LargeBinary/BinaryView}#8768shred_variantfor Uuids #8666canonicalize_and_verify_data_typeinVariantArray, but maybe still could be an output ofvariant_get/variant_to_arrowvariant_to_arrowStructtype support #9529variant_to_arrowFixedSizeListtype support #9531Describe alternatives you've considered
Additional context
Will be helpful for unit testing.