-
Notifications
You must be signed in to change notification settings - Fork 73
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
refactor: flatten deeply nested match statement #756
Conversation
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.
LGTM
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #756 +/- ##
=======================================
Coverage 84.38% 84.39%
=======================================
Files 80 80
Lines 19222 19219 -3
Branches 19222 19219 -3
=======================================
- Hits 16220 16219 -1
+ Misses 2200 2197 -3
- Partials 802 803 +1 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
} | ||
DataType::Map { .. } => unimplemented!(), | ||
}, | ||
Null(DataType::BYTE) => Arc::new(Int8Array::new_null(num_rows)), |
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.
Is it worth factoring out all the Arc::new
s?
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.
Can't -- each Arc::new
call produces Arc<T: Array>
for a different T
, that immediately decays to the Arc<dyn Array>
we actually want.
What changes are proposed in this pull request?
Small code readability improvement -- instead of a triple-nested match, flatten it out to a single level.
How was this change tested?
Existing unit tests. No new functionality.