This is an automated email from the ASF dual-hosted git repository. voonhous pushed a commit to branch release-1.2.1 in repository https://gitbox.apache.org/repos/asf/hudi.git
commit 46d3c8494aa200d69958a79daf630a27000e8c09 Author: voon <[email protected]> AuthorDate: Thu Aug 6 01:17:31 2026 +0800 fix(build): import OperationConverter from its release-branch package TestOperationConverter, added by 86871e04030c (#19224), was picked in at master's path org/apache/hudi/util/ where OperationConverter also lives, so it resolved the class same-package with no import. On release-1.2.1 the class is still at org/apache/hudi/client/utils/ (package org.apache.hudi.client.utils), so the unqualified reference did not resolve and hudi-client-common failed to test-compile with "cannot find symbol: class OperationConverter". Add the explicit import. Master is unaffected: the package move there makes the import unnecessary, not wrong. --- .../src/test/java/org/apache/hudi/util/TestOperationConverter.java | 1 + 1 file changed, 1 insertion(+) diff --git a/hudi-client/hudi-client-common/src/test/java/org/apache/hudi/util/TestOperationConverter.java b/hudi-client/hudi-client-common/src/test/java/org/apache/hudi/util/TestOperationConverter.java index e8cee32e7f4d..811bea915219 100644 --- a/hudi-client/hudi-client-common/src/test/java/org/apache/hudi/util/TestOperationConverter.java +++ b/hudi-client/hudi-client-common/src/test/java/org/apache/hudi/util/TestOperationConverter.java @@ -18,6 +18,7 @@ package org.apache.hudi.util; +import org.apache.hudi.client.utils.OperationConverter; import org.apache.hudi.common.model.WriteOperationType; import org.junit.jupiter.api.Test;
