} else if (executePlan instanceof AlterTablePlan) {
FTable hTableDesc = ((AlterTablePlan) executePlan).getNewTable();
return modifyTable(masterAdminKeepAliveConnection, hTableDesc);
} else if (executePlan instanceof CreateTablePlan) {
CreateTablePlan createTable = (CreateTablePlan) executePlan;
MasterAdminProtos.CreateTableResponse response = masterAdminKeepAliveConnection
.createTable(
null,
RequestConverter.buildCreateTableRequest(
createTable.getTable(), createTable.getSplitKeys()));
return ResponseConverter.buildExecuteResponse(response);