if(curTable != null) {
Integer oldVersion = curTable.getVersion();
if(oldVersion != null && oldVersion == version) {
return;
} else {
throw new ISTableVersionMismatchException(oldVersion, version);
}
}
createTableCommon(session, newTable, true, version, false);
}