Details
-
Bug
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
None
-
None
-
None
-
ghx-label-8
Description
We have the following logging code in DROP_TABLE process() method, here always the first condition is triggered and the second will never be matched. So we should switch the order of the conditions.
if (!tblMatched.getRef()) { LOG.warn(debugString("Table %s was not removed from " + "catalog since the creation time of the table did not match", tblName_)); } else if (!tblWasFound.getRef()) { debugLog("Table {} was not removed since it did not exist in catalog.", tblName_); }