}
public void dropIndexForTable(final String tableName, final String indexName) throws HBqlException {
this.validateIndexExistsForTable(indexName, tableName);
try {
final IndexedTableAdmin ita = this.getIndexTableAdmin();
ita.removeIndex(tableName.getBytes(), indexName);
}
catch (IOException e) {
throw new HBqlException(e);
}
}