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
Type widening allows a column with a narrower type to be read with a schema that has a wider type. For example, data stored as u16 can be read as u32 with type widening.
Describe the functionality you are proposing.
Modify the schema compatibility check function in schema_compat.rs to handle this case.
Additional context
A useful function to look at is check_cast_compat which does the type widening logic for arrow types.
The text was updated successfully, but these errors were encountered:
Please describe why this is necessary.
Type widening allows a column with a narrower type to be read with a schema that has a wider type. For example, data stored as
u16
can be read asu32
with type widening.Describe the functionality you are proposing.
Modify the schema compatibility check function in
schema_compat.rs
to handle this case.Additional context
A useful function to look at is
check_cast_compat
which does the type widening logic for arrow types.The text was updated successfully, but these errors were encountered: