HBASE-912 PE is broken when other tables exist
git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@701497 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b45191d2d9
commit
70dac88e1f
|
@ -12,6 +12,7 @@ Release 0.19.0 - Unreleased
|
|||
HBASE-898 RowResult.containsKey(String) doesn't work
|
||||
(Doğacan Güney via Jim Kellerman)
|
||||
HBASE-906 [shell] Truncates output
|
||||
HBASE-912 PE is broken when other tables exist
|
||||
|
||||
IMPROVEMENTS
|
||||
HBASE-901 Add a limit to key length, check key and value length on client side
|
||||
|
|
|
@ -200,7 +200,7 @@ public class PerformanceEvaluation implements HConstants {
|
|||
if (extantTables.length > 0) {
|
||||
// Check to see if our table already exists. Print warning if it does.
|
||||
for (int i = 0; i < extantTables.length; i++) {
|
||||
if (extantTables[0].equals(tableDescriptor)) {
|
||||
if (extantTables[1].equals(tableDescriptor)) {
|
||||
LOG.warn("Table " + tableDescriptor + " already exists");
|
||||
tableExists = true;
|
||||
break;
|
||||
|
@ -701,4 +701,4 @@ public class PerformanceEvaluation implements HConstants {
|
|||
System.exit(new PerformanceEvaluation(c).
|
||||
doCommandLine(args));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue