HRegionInfo.toString() doesn't call Bytes.toStringBinary() on tableName

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1142235 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Zhihong Yu 2011-07-02 15:34:29 +00:00
parent fb23289cd1
commit 38ee878044
1 changed files with 1 additions and 1 deletions

View File

@ -615,7 +615,7 @@ public class HRegionInfo extends VersionedWritable implements WritableComparable
public String toString() { public String toString() {
return "REGION => {" + HConstants.NAME + " => '" + return "REGION => {" + HConstants.NAME + " => '" +
this.regionNameStr this.regionNameStr
+ " TableName => " + this.tableName + " TableName => " + Bytes.toStringBinary(this.tableName)
+ "', STARTKEY => '" + + "', STARTKEY => '" +
Bytes.toStringBinary(this.startKey) + "', ENDKEY => '" + Bytes.toStringBinary(this.startKey) + "', ENDKEY => '" +
Bytes.toStringBinary(this.endKey) + Bytes.toStringBinary(this.endKey) +