* liquibase.snapshot.jvm.JdbcDatabaseSnapshotGenerator#fillForeignKeyInfo
* (java.sql.ResultSet)
*/
@Override
protected ForeignKeyInfo fillForeignKeyInfo(ResultSet rs) throws DatabaseException, SQLException {
ForeignKeyInfo fkInfo = super.fillForeignKeyInfo(rs);
if (fkInfo.getKeySeq() == 0) {
fkInfo.setReferencesUniqueColumn(true);
}
return fkInfo;
}