diff --git a/ql/src/java/org/apache/hadoop/hive/ql/hooks/UpdateInputAccessTimeHook.java b/ql/src/java/org/apache/hadoop/hive/ql/hooks/UpdateInputAccessTimeHook.java index 36a92aab57..e7d8e55695 100644 --- a/ql/src/java/org/apache/hadoop/hive/ql/hooks/UpdateInputAccessTimeHook.java +++ b/ql/src/java/org/apache/hadoop/hive/ql/hooks/UpdateInputAccessTimeHook.java @@ -59,6 +59,9 @@ public void run(HookContext hookContext) throws Exception { // of the object, before it was modified by StatsTask. // Get the latest versions of the object case TABLE: { + if(re.getTable().getTableName().equals("_dummy_table")){ + break; + } String dbName = re.getTable().getDbName(); String tblName = re.getTable().getTableName(); Table t = db.getTable(dbName, tblName);