Skip to content
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

Merged
merged 2 commits into from
Mar 20, 2025

Conversation

scovich
Copy link
Collaborator

@scovich scovich commented Mar 20, 2025

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.

Copy link
Collaborator

@zachschuermann zachschuermann left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

Copy link

codecov bot commented Mar 20, 2025

Codecov Report

Attention: Patch coverage is 18.18182% with 18 lines in your changes missing coverage. Please review.

Project coverage is 84.39%. Comparing base (72bab02) to head (0dabd9b).
Report is 1 commits behind head on main.

Files with missing lines Patch % Lines
kernel/src/engine/arrow_expression/mod.rs 18.18% 18 Missing ⚠️
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.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

}
DataType::Map { .. } => unimplemented!(),
},
Null(DataType::BYTE) => Arc::new(Int8Array::new_null(num_rows)),
Copy link
Collaborator

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::news?

Copy link
Collaborator Author

@scovich scovich Mar 20, 2025

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.

@scovich scovich merged commit 74aab72 into delta-io:main Mar 20, 2025
20 of 21 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants