ALF-12874: Schema reference files are out of date.

Made comparisons case-insensitve and extract DB metadata for tables matching lower- and upper-case prefixes (e.g. act_ and ACT_).




git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@35399 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Matt Ward
2012-04-18 20:15:45 +00:00
parent e31ea91e51
commit 4fc2426815
4 changed files with 35 additions and 33 deletions

View File

@@ -103,7 +103,7 @@ public abstract class AbstractDbObject implements DbObject
sameParent = true;
}
// Same parent & same name - it must be considered the same object.
return sameParent && getName().equals(other.getName());
return sameParent && getName().equalsIgnoreCase(other.getName());
}
return false;