Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
2.6.0
-
None
-
Incompatible change, Reviewed
-
Now trash message is not printed to System.out. It is handled by Logger instead.
Description
Specifically,
if (success) { System.out.println("Moved: '" + p + "' to trash at: " + trash.getCurrentTrashDir() ); }
should be:
if (success) { LOG.info("Moved: '" + p + "' to trash at: " + trash.getCurrentTrashDir()); }
Attachments
Attachments
Issue Links
- blocks
-
HIVE-11645 Add in-place updates for dynamic partitions loading
- Closed