-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Support reading arrow Map type from Delta #21330
Conversation
DataType::BinaryOffset | ||
} | ||
}, | ||
ArrowDataType::FixedSizeBinary(_) => DataType::Binary, | ||
dt => panic!("Arrow datatype {dt:?} not supported by Polars. You probably need to activate that data-type feature."), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
rustfmt broke because this string line was too long
first_schema | ||
.iter() | ||
.map(|(name, field)| { | ||
(name.clone(), slf_schema.get(name).unwrap_or(field).clone()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ensures we use the Field
from the metadata of this file
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #21330 +/- ##
=======================================
Coverage 79.85% 79.85%
=======================================
Files 1596 1596
Lines 228642 228671 +29
Branches 2615 2615
=======================================
+ Hits 182571 182600 +29
Misses 45473 45473
Partials 598 598 ☔ View full report in Codecov by Sentry. |
POLARS_FORCE_MULTISCAN
turned onThis involves adding a dispatch and fixing a bug.