This is an automated email from the ASF dual-hosted git repository.
ayushsaxena pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hive.git
The following commit(s) were added to refs/heads/master by this push:
new f4c4d6b2ec1 HIVE-27896: Remove common-lang usage (#4891). (Cheng Pan,
reviewed by Ayush Saxena)
f4c4d6b2ec1 is described below
commit f4c4d6b2ec1555abb844b6f348f879719b0a67c3
Author: Cheng Pan <[email protected]>
AuthorDate: Mon Nov 27 00:52:29 2023 +0800
HIVE-27896: Remove common-lang usage (#4891). (Cheng Pan, reviewed by Ayush
Saxena)
---
ql/src/java/org/apache/hadoop/hive/ql/parse/ImportSemanticAnalyzer.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/ql/src/java/org/apache/hadoop/hive/ql/parse/ImportSemanticAnalyzer.java
b/ql/src/java/org/apache/hadoop/hive/ql/parse/ImportSemanticAnalyzer.java
index d12a25b1990..17002e045be 100644
--- a/ql/src/java/org/apache/hadoop/hive/ql/parse/ImportSemanticAnalyzer.java
+++ b/ql/src/java/org/apache/hadoop/hive/ql/parse/ImportSemanticAnalyzer.java
@@ -1211,7 +1211,7 @@ public class ImportSemanticAnalyzer extends
BaseSemanticAnalyzer {
}
if (tblDesc.getLocation() == null) {
- if (parentDb != null && !tblDesc.isExternal() &&
org.apache.commons.lang.StringUtils.isNotBlank(parentDb.getManagedLocationUri()))
{
+ if (parentDb != null && !tblDesc.isExternal() &&
StringUtils.isNotBlank(parentDb.getManagedLocationUri())) {
tblDesc.setLocation(new Path(parentDb.getManagedLocationUri(),
tblDesc.getTableName()).toString());
LOG.info("Setting the location for table {} as {}",
tblDesc.getTableName(), tblDesc.getLocation());
} else if (!waitOnPrecursor) {