Package com.alibaba.wasp.plan

Examples of com.alibaba.wasp.plan.NotingTodoPlan


    metaEventOperation.isLegalTableName(tableName);
    // Check if the table exists
    boolean tableNotExit = metaEventOperation.checkTableNotExists(tableName, true);
    if(!tableNotExit) {
      if(waspSqlCreateTableStatement.isIfNotExiists()) {
        context.setPlan(new NotingTodoPlan());
        LOG.debug("table " + tableName + " exits , isIfNotExiists is true, ignore");
        return;
      } else {
        throw new TableExistsException(tableName + " is already exists!");
      }
View Full Code Here

TOP

Related Classes of com.alibaba.wasp.plan.NotingTodoPlan

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.