onlywangyh opened a new pull request, #7323: URL: https://github.com/apache/hudi/pull/7323
Fix query partition path add invalid input path. In function getPartitionPathsWithPrefixes will fetch list of all partitions path that whose relative partition paths match the given prefixes. It caused a unexpected path add and throw exception in hive. 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 the path 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]
