HBASE-9236 region_mover#getTable() should use TableName.toString() instead of Bytes.toString()
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1514552 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
2b14f9db32
commit
01f291e7b5
|
@ -60,7 +60,7 @@ def getTable(config, name)
|
||||||
if not $TABLES
|
if not $TABLES
|
||||||
$TABLES = {}
|
$TABLES = {}
|
||||||
end
|
end
|
||||||
key = Bytes.toString(name)
|
key = name.toString()
|
||||||
if not $TABLES[key]
|
if not $TABLES[key]
|
||||||
$TABLES[key] = HTable.new(config, name)
|
$TABLES[key] = HTable.new(config, name)
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue