mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
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:
@@ -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;
|
||||
|
Reference in New Issue
Block a user