This is an automated email from the ASF dual-hosted git repository. stigahuang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/impala.git
commit cfeb57c128c7f514f3433a0399966f46a49a1a4a Author: Fang-Yu Rao <[email protected]> AuthorDate: Fri Feb 21 16:07:38 2025 -0800 IMPALA-13739: Part1 (Addendum): Import StringUtils from commons-lang3 In part 1, when creating FileDescriptor.java, we accidentally switched to the StringUtils in commons-lang (2.6) instead of that from commons-lang3, which undid some work in IMPALA-13618. This patch corrects this, so we only use classes from commons-lang3 from now on. Change-Id: I38d4d0ab03c549f8d73149651e3e735bd4f8d20a Reviewed-on: http://gerrit.cloudera.org:8080/22519 Tested-by: Impala Public Jenkins <[email protected]> Reviewed-by: Daniel Becker <[email protected]> Reviewed-by: Michael Smith <[email protected]> --- fe/src/main/java/org/apache/impala/catalog/FileDescriptor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fe/src/main/java/org/apache/impala/catalog/FileDescriptor.java b/fe/src/main/java/org/apache/impala/catalog/FileDescriptor.java index 9dbbd16ec..d8ac36add 100644 --- a/fe/src/main/java/org/apache/impala/catalog/FileDescriptor.java +++ b/fe/src/main/java/org/apache/impala/catalog/FileDescriptor.java @@ -29,7 +29,7 @@ import java.nio.ByteBuffer; import java.util.Collection; import java.util.List; -import org.apache.commons.lang.StringUtils; +import org.apache.commons.lang3.StringUtils; import org.apache.hadoop.fs.BlockLocation; import org.apache.hadoop.fs.FileStatus; import org.apache.hadoop.fs.Path;
