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:
parent
b89393caf2
commit
547e9a60a1
|
@ -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)
|
||||
|
|
|
@ -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) +
|
||||
|
|
Loading…
Reference in New Issue