DatastoreIdentifier colName = idFactory.newIdentifier(IdentifierFactory.COLUMN, rs.getString(4));
Column col = (Column) columnsByName.get(colName);
if (col == null)
{
throw new UnexpectedColumnException(this.toString(), colName.getIdentifier(), this.getSchemaName(), this.getCatalogName());
}
pk.setDatastoreField(keySeq, col);
}
}
finally