This is an automated email from the ASF dual-hosted git repository.

asherman 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 4cf320f  HIVE-18890: Lower Logging for "Table not found" Error
4cf320f is described below

commit 4cf320fd871a6def225c5e3dfedde6a52a15f7a3
Author: Manoj Narayanan <[email protected]>
AuthorDate: Wed Feb 13 11:33:22 2019 -0800

    HIVE-18890: Lower Logging for "Table not found" Error
---
 ql/src/java/org/apache/hadoop/hive/ql/metadata/Hive.java | 1 -
 1 file changed, 1 deletion(-)

diff --git a/ql/src/java/org/apache/hadoop/hive/ql/metadata/Hive.java 
b/ql/src/java/org/apache/hadoop/hive/ql/metadata/Hive.java
index 9ab3a9e..5cfd0a8 100644
--- a/ql/src/java/org/apache/hadoop/hive/ql/metadata/Hive.java
+++ b/ql/src/java/org/apache/hadoop/hive/ql/metadata/Hive.java
@@ -1289,7 +1289,6 @@ public class Hive {
       }
     } catch (NoSuchObjectException e) {
       if (throwException) {
-        LOG.error("Table " + dbName + "." + tableName + " not found: " + 
e.getMessage());
         throw new InvalidTableException(tableName);
       }
       return null;

Reply via email to