u70b3 commented on PR #677: URL: https://github.com/apache/paimon-rust/pull/677#issuecomment-5225764411
apache/paimon#9037 has been merged (commit f7d9593) — thanks for shepherding it through, @JingsongLi! With that, the case you raised is now aligned across both implementations: merged Java treats `null` and `Long.MIN_VALUE` uniformly as missing via `isMissingWatermark`, with no early return on the latest snapshot's value. So `[100, Long.MIN_VALUE]` querying `100` returns snapshot 1 in Java as well — identical to this PR's `later_or_equal_watermark`, which skips both `None` and `Some(i64::MIN)` the same way. The Rust implementation now matches Java by construction, as planned. CI is all green. Could you take another look when you have a moment? Would love to get this in. -- 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]
