PE is broken when other tables exist
------------------------------------
Key: HBASE-912
URL: https://issues.apache.org/jira/browse/HBASE-912
Project: Hadoop HBase
Issue Type: Bug
Affects Versions: 0.18.0
Reporter: Jean-Daniel Cryans
Priority: Minor
Fix For: 0.18.1, 0.19.0
The iteration in checkTable is broken.
{code}
for (int i = 0; i < extantTables.length; i++) {
if (extantTables[0].equals(tableDescriptor)) {
LOG.warn("Table " + tableDescriptor + " already exists");
tableExists = true;
break;
}
}
{code}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.