HBASE-15842 SnapshotInfo should display ownership information

This commit is contained in:
tedyu 2016-05-16 20:34:04 -07:00
parent c3223a59ff
commit 00e61d2cfd
1 changed files with 1 additions and 0 deletions

View File

@ -458,6 +458,7 @@ public final class SnapshotInfo extends Configured implements Tool {
System.out.println(" Table: " + snapshotDesc.getTable());
System.out.println(" Format: " + snapshotDesc.getVersion());
System.out.println("Created: " + df.format(new Date(snapshotDesc.getCreationTime())));
System.out.println(" Owner: " + snapshotDesc.getOwner());
System.out.println();
}