mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
ALF-7260: unit tests, bug fixes.
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@31455 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -19,7 +19,7 @@
|
||||
package org.alfresco.util.schemacomp.model;
|
||||
|
||||
import org.alfresco.util.schemacomp.Differences;
|
||||
import org.alfresco.util.schemacomp.SchemaUtils;
|
||||
import org.alfresco.util.schemacomp.Result.Strength;
|
||||
|
||||
/**
|
||||
* Represents a column in a database table.
|
||||
@@ -105,10 +105,10 @@ public class Column extends AbstractDbObject
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void doDiff(DbObject right, Differences differences)
|
||||
protected void doDiff(DbObject right, Differences differences, Strength strength)
|
||||
{
|
||||
Column rightColumn = (Column) right;
|
||||
SchemaUtils.compareSimple(type, rightColumn.type, differences);
|
||||
SchemaUtils.compareSimple(nullable, rightColumn.nullable, differences);
|
||||
comparisonUtils.compareSimple(type, rightColumn.type, differences);
|
||||
comparisonUtils.compareSimple(nullable, rightColumn.nullable, differences);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user