-
-
Notifications
You must be signed in to change notification settings - Fork 2k
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
fix: Fix type inference error in map_elements
for List types
#18542
Conversation
let dt = series.dtype(); | ||
|
||
// Null dtype may be incorrect, fall back to AnyValues logic. | ||
if dt.is_nested_null() { |
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.
This is the fix - the rest is minor refactoring.
f1fe8d8
to
da689fd
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #18542 +/- ##
==========================================
+ Coverage 79.80% 79.82% +0.02%
==========================================
Files 1501 1502 +1
Lines 201952 201950 -2
Branches 2868 2868
==========================================
+ Hits 161163 161215 +52
+ Misses 40243 40189 -54
Partials 546 546 ☔ View full report in Codecov by Sentry. |
Ref #18472
There are more related errors here - picking those up separately.