String logicalName = rs.getString(2);
String physicalName = rs.getString(3);
int groupId = rs.getInt(4);
String options = rs.getString(5);
TableSchemaImpl tableData = nameToTableMap.get(logicalName);
if( null == tableData ) {
tableData = new TableSchemaImpl();
tableData.setLogicalName(logicalName);
tableData.setPhysicalName(physicalName);
tableData.setGroupId(groupId);
try {
TableOptionsParser.parseTableOptions(options, tableData);
} catch (Exception e) {
try {
stmt.close();