datafusion: support REST format table partition commands#591
Open
sundapeng wants to merge 9 commits into
Open
Conversation
5 tasks
JingsongLi
marked this pull request as draft
July 23, 2026 06:07
…e-partition-commands # Conflicts: # Cargo.lock # crates/integrations/datafusion/Cargo.toml # scripts/release_licenses.py
JingsongLi
marked this pull request as ready for review
July 24, 2026 10:13
Contributor
|
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.
Summary
Add Spark-style partition administration to DataFusion for catalog-managed internal Format Tables loaded from REST Catalog. REST partition registrations become the authoritative partition set used by both SQL commands and scans.
Changes
SHOW PARTITIONS table [PARTITION (...)]ALTER TABLE table ADD [IF NOT EXISTS] PARTITION (...)ALTER TABLE table DROP [IF EXISTS] PARTITION (...)MSCK REPAIR TABLE table [{ADD|DROP|SYNC} PARTITIONS]DROP/SYNCreconciliation.Scope and limitations
metastore.partitioned-table=trueand a non-engineimplementation.DROP PARTITIONcurrently accepts one complete partition specification per statement.MSCK REPAIR TABLEis supported; bareREPAIR TABLEis rejected.Testing
cargo fmt --all -- --checkgit diff --checkcargo check --locked -p paimon -p paimon-datafusioncargo test --locked -p paimon --test format_partition_testcargo test --locked -p paimon --test rest_api_testcargo test --locked -p paimon --test rest_catalog_testcargo test --locked -p paimon api_request::tests::test_partition_request_flags_default_to_truecargo test --locked -p paimon-datafusion --libcargo test --locked -p paimon-datafusion --test rest_format_partition_sqlcargo clippy --locked -p paimon -p paimon-datafusion --all-targets -- -D warnings