bithw1 opened a new issue, #6412:
URL: https://github.com/apache/hudi/issues/6412
Hi,
I have a hudi that has 10 commit times , say ,the smallest commit time is
T1, the biggest commit time is T2,
when I do the following the query:
`
spark.sql(s"select * from tbl_order_incremental where _hoodie_commit_time
> 0 and _hoodie_commit_time <= $T2").show(truncate = false)
`
The above query yields empty result, but the following query yields all data.
`
spark.sql(s"select * from tbl_order_incremental where _hoodie_commit_time
>= $T1 and _hoodie_commit_time <= $T2").show(truncate = false)
`
Not sure this is the expected behevior, thanks!
--
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]