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
fix: Arrow schema compatibility for TEXT vs VARCHAR types
- Fix Utf8View vs Utf8 parameter deserialization mismatch
- TEXT parameters now use ScalarValue::Utf8View (matches DataFusion internal schema)
- VARCHAR parameters continue using ScalarValue::Utf8
- Fix TEXT_ARRAY and VARCHAR_ARRAY type handling
- Resolves 'expected Utf8View but found Utf8' errors in INSERT operations
This addresses a critical schema compatibility issue where DataFusion's internal
Arrow schema expects Utf8View for TEXT columns but parameter deserialization
was providing Utf8 scalar values, causing INSERT failures and type mismatches.
0 commit comments