String oldTable = cl.getOptionValue(createTableOptCopyConfig.getOpt());
if (!shellState.getConnector().tableOperations().exists(oldTable))
throw new TableNotFoundException(null, oldTable, null);
}
TimeType timeType = TimeType.MILLIS;
if (cl.hasOption(createTableOptTimeLogical.getOpt()))
timeType = TimeType.LOGICAL;
// create table
shellState.getConnector().tableOperations().create(tableName, true, timeType);