bithw1 commented on issue #17605:
URL: https://github.com/apache/hudi/issues/17605#issuecomment-3658910151
Thanks @danny0405.
If `read.start-commit` is not specified and `read.end-commit` is
specified,then `read.start-commit` will be equal to `read.end-commit`.
From my test result, it is not true.
Take the following query as example
```
select * from test_flink_incremental
/*+
options(
'read.end-commit'='20251215134527168'
)
*/
```
20251215134527168 is not an exact commit time, when do the above query, 2 is
returned, which is committed in 20251215134520642, 20251215134520642 is the
biggest but less than 20251215134527168
Furthermore, nothing returned with the following query
```
select * from test_flink_incremental
/*+
options(
'read.start-commit'='20251215134527168'
'read.end-commit'='20251215134527168'
)
*/
```
--
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]