InvisibleProgrammer opened a new pull request, #3532: URL: https://github.com/apache/hive/pull/3532
There is no test about the output directory names after running compaction on partitions Compaction output directories' writeIds only reflect the writeIds of the deltas it compacts, and not the max write id of the table Example: ``` Pre-compaction... Partition p=1 contains: delta_1_1 delta_2_2 partition p=2 contains delta_3_3 delta_4_4 After minor compaction... Partition p=1 contains: delta_1_2 partition p=2 contains delta_3_4 ``` ### What changes were proposed in this pull request? New test added: `testCompactionOutputDirectoryNamesOnPartitions` ### Does this PR introduce _any_ user-facing change? No ### How was this patch tested? New test added: `testCompactionOutputDirectoryNamesOnPartitions` -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
