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
Follow on issue for the conversion to casting from ColumnView rather than from ColumnVector done in #1814. The conversion was to allow for easier recursive casting when casting the child columns of structs.
The decimal family of casts had non-trivial uses of the ColumnVector originally used, like a potential zero-copy solution when converting from decimal to decimal. Currently the ColumnView is copied to a ColumnVector in the recursive calls and the decimal cases are filtered out in the top level doColumnar method.
The text was updated successfully, but these errors were encountered:
Follow on issue for the conversion to casting from
ColumnView
rather than fromColumnVector
done in #1814. The conversion was to allow for easier recursive casting when casting the child columns of structs.The decimal family of casts had non-trivial uses of the
ColumnVector
originally used, like a potential zero-copy solution when converting from decimal to decimal. Currently theColumnView
is copied to aColumnVector
in the recursive calls and the decimal cases are filtered out in the top leveldoColumnar
method.The text was updated successfully, but these errors were encountered: