HBASE-82 Fix toString in migation

git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@657125 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2008-05-16 16:25:43 +00:00
parent 3f3e2c5756
commit 1eda3c2439
1 changed files with 1 additions and 1 deletions

View File

@ -342,7 +342,7 @@ public class Migrate extends Configured implements Tool {
throws IOException {
// Create directory where table will live
Path tableDir = new Path(rootdir, tableName.toString());
Path tableDir = new Path(rootdir, Bytes.toString(tableName));
fs.mkdirs(tableDir);
// Move the old region directory under the table directory