} else if (executePlan instanceof DropIndexPlan) {
DropIndexPlan dropIndexPlan = (DropIndexPlan) executePlan;
MasterAdminProtos.DropIndexRequest request = RequestConverter.buildDropIndexRequest(
dropIndexPlan.getTableName(), dropIndexPlan.getIndexName());
return ResponseConverter
.buildExecuteResponse(masterAdminKeepAliveConnection.deleteIndex(
null, request));
} else if (executePlan instanceof DropTablePlan) {
List<DeleteTableResponse> responses = new ArrayList<DeleteTableResponse>();
for (String tableName : ((DropTablePlan) executePlan).getTableNames()) {
byte[] byteName = Bytes.toBytes(tableName);