HBASE-4303 HRegionInfo.toString has bad quoting

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1163424 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Todd Lipcon 2011-08-30 21:57:29 +00:00
parent b89393caf2
commit 547e9a60a1
2 changed files with 2 additions and 1 deletions

View File

@ -226,6 +226,7 @@ Release 0.91.0 - Unreleased
(Jonathan Hsieh)
HBASE-4290 HLogSplitter doesn't mark its MonitoredTask as complete in
non-distributed case (todd)
HBASE-4303 HRegionInfo.toString has bad quoting (todd)
IMPROVEMENTS
HBASE-3290 Max Compaction Size (Nicolas Spiegelberg via Stack)

View File

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