Skip to:
In file liquibase.diff.ObjectDifferences there is this line of code:
differences.compare("type", databaseObject1, databaseObject2, new ObjectDifferences.DatabaseObjectNameCompareFunction(Column.class, accordingTo));
Should it not be:differences.compare("type", databaseObject1, databaseObject2, new ObjectDifferences.DataTypeCompareFunction(accordingTo));
Or is this dead code?
Linux Ubuntu
In file liquibase.diff.ObjectDifferences there is this line of code:
differences.compare("type", databaseObject1, databaseObject2, new ObjectDifferences.DatabaseObjectNameCompareFunction(Column.class, accordingTo));
Should it not be:
differences.compare("type", databaseObject1, databaseObject2, new ObjectDifferences.DataTypeCompareFunction(accordingTo));
Or is this dead code?