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:
Jean-Daniel Cryans 2008-10-03 19:20:50 +00:00
parent b45191d2d9
commit 70dac88e1f
2 changed files with 3 additions and 2 deletions

View File

@ -12,6 +12,7 @@ Release 0.19.0 - Unreleased
HBASE-898 RowResult.containsKey(String) doesn't work HBASE-898 RowResult.containsKey(String) doesn't work
(Doğacan Güney via Jim Kellerman) (Doğacan Güney via Jim Kellerman)
HBASE-906 [shell] Truncates output HBASE-906 [shell] Truncates output
HBASE-912 PE is broken when other tables exist
IMPROVEMENTS IMPROVEMENTS
HBASE-901 Add a limit to key length, check key and value length on client side HBASE-901 Add a limit to key length, check key and value length on client side

View File

@ -200,7 +200,7 @@ public class PerformanceEvaluation implements HConstants {
if (extantTables.length > 0) { if (extantTables.length > 0) {
// Check to see if our table already exists. Print warning if it does. // Check to see if our table already exists. Print warning if it does.
for (int i = 0; i < extantTables.length; i++) { for (int i = 0; i < extantTables.length; i++) {
if (extantTables[0].equals(tableDescriptor)) { if (extantTables[1].equals(tableDescriptor)) {
LOG.warn("Table " + tableDescriptor + " already exists"); LOG.warn("Table " + tableDescriptor + " already exists");
tableExists = true; tableExists = true;
break; break;