onlywangyh commented on issue #7298: URL: https://github.com/apache/hudi/issues/7298#issuecomment-1330215715
> > E.g., Table has partition 4 partitions: > > year=2022/month=08/day=30, year=20222/month=08/day=31, year=2022/month=07/day=03, year=2022/month=077/day=04 > > Prefix "year=2022" we expect return year=2022/month=08/day=30, year=2022/month=07/day=03, year=2022/month=077/day=04, actual return all partitions, while prefix "year=2022/month=07" we expect year=2022/month=07/day=03, actual output only two partitions. > > Are you saying the filter is not working this way currently? Thats right. like this Table has partition 2 partitions: year=2022/month=08/day=30 year=2022back/month=08/day=31 When query "year=2022", we only want get year "2022" not the "2022back". Expect paths _[year=2022/month=08/day=30]_. actual paths [year=2022/month=08/day=30, year=2022back/month=08/day=30] -- 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]
