HBASE-15842 SnapshotInfo should display ownership information

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

View File

@ -424,6 +424,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();
}