XiaoHongbo-Hope opened a new pull request, #718: URL: https://github.com/apache/paimon-rust/pull/718
### Purpose Fail fast when a live Data Evolution file has no first row ID. Data Evolution split planning requires every live file to have a row-id range. Java uses DataFileMeta.nonNullRowIdRange and PyPaimon uses non_null_row_id_range, so both reject invalid metadata during planning. Rust previously kept the whole bucket and deferred the failure to the reader. This PR validates first_row_id before row-range grouping for scans with and without row-range filters, aligning the planning behavior with Java and PyPaimon. ### Tests - cargo test -p paimon table::table_scan::tests - cargo test -p paimon data_evolution - cargo clippy -p paimon --tests -- -D warnings - cargo fmt --all -- --check -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
