This is an automated email from the ASF dual-hosted git repository. zhangyue19921010 pushed a commit to branch partition-bucket-index in repository https://gitbox.apache.org/repos/asf/hudi.git
commit a4d460544f33548fe48a7c31b4e26c5672d47c8a Author: Lin Liu <[email protected]> AuthorDate: Mon Mar 17 14:11:52 2025 -0700 [HUDI-7375] Enable testLogReaderWithDifferentVersionsOfDeleteBlocks (#12668) Co-authored-by: Y Ethan Guo <[email protected]> --- .../org/apache/hudi/common/functional/TestHoodieLogFormat.java | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/hudi-hadoop-common/src/test/java/org/apache/hudi/common/functional/TestHoodieLogFormat.java b/hudi-hadoop-common/src/test/java/org/apache/hudi/common/functional/TestHoodieLogFormat.java index 098911b7abc..25545de976c 100755 --- a/hudi-hadoop-common/src/test/java/org/apache/hudi/common/functional/TestHoodieLogFormat.java +++ b/hudi-hadoop-common/src/test/java/org/apache/hudi/common/functional/TestHoodieLogFormat.java @@ -82,7 +82,6 @@ import org.junit.jupiter.api.AfterAll; import org.junit.jupiter.api.AfterEach; import org.junit.jupiter.api.BeforeAll; import org.junit.jupiter.api.BeforeEach; -import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.TestInfo; import org.junit.jupiter.api.io.TempDir; @@ -1918,12 +1917,11 @@ public class TestHoodieLogFormat extends HoodieCommonTestHarness { 0, 0, Option.empty()); } - @Disabled("HUDI-7375") @ParameterizedTest @MethodSource("testArguments") - public void testLogReaderWithDifferentVersionsOfDeleteBlocks(ExternalSpillableMap.DiskMapType diskMapType, - boolean isCompressionEnabled, - boolean enableOptimizedLogBlocksScan) + void testLogReaderWithDifferentVersionsOfDeleteBlocks(ExternalSpillableMap.DiskMapType diskMapType, + boolean isCompressionEnabled, + boolean enableOptimizedLogBlocksScan) throws IOException, URISyntaxException, InterruptedException { Schema schema = HoodieAvroUtils.addMetadataFields(getSimpleSchema()); // Set a small threshold so that every block is a new version
