[AURON #2250] Add native Hudi scan coverage for partitioned COW tables#2251
Merged
slfan1989 merged 1 commit intoMay 17, 2026
Merged
Conversation
Contributor
|
@weimingdiit I've taken a quick look and +1. Let's check Copilot's review results. |
Contributor
There was a problem hiding this comment.
Pull request overview
Adds additional native scan test coverage for Apache Hudi partitioned COW (Copy-on-Write) Parquet tables in the Auron Spark integration test suite, targeting regressions around partition pruning and mixed partition/data filter handling.
Changes:
- Adds a new test that creates a partitioned Hudi COW table, inserts data across partitions, and validates query correctness.
- Verifies provider-based conversion to native Parquet scan for: full scan, partition-filtered scan, and combined partition+data filtered scan.
- Asserts partition filters and data filters are routed to the expected
FileSourceScanExecfilter buckets.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
5ecdfe5 to
32e4d9b
Compare
… tables Signed-off-by: weimingdiit <weimingdiit@gmail.com>
32e4d9b to
1a76d59
Compare
slfan1989
approved these changes
May 15, 2026
yew1eb
approved these changes
May 16, 2026
Contributor
|
@weimingdiit Thanks for the contribution! Merged. @yew1eb Thanks for the review! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Which issue does this PR close?
Closes #2250
Rationale for this change
Partitioned COW Hudi tables are a common use case, but native Hudi scan coverage currently focuses on simple non-partitioned COW tables and fallback cases. Adding partitioned table coverage helps catch regressions around partition pruning and mixed partition/data filters.
What changes are included in this PR?
Add a partitioned COW Parquet Hudi table test.
Are there any user-facing changes?
No. This PR only adds test coverage.
How was this patch tested?