mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
AVM stores are renamable. Beware. Database schema has changed since I needed to
introduce a synthetic primary key into the stores table. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@4492 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -92,7 +92,7 @@ class Lookup
|
||||
public Lookup(Lookup other, AVMNodeDAO nodeDAO, AVMStoreDAO storeDAO)
|
||||
{
|
||||
fValid = true;
|
||||
fAVMStore = storeDAO.getByName(other.fAVMStore.getName());
|
||||
fAVMStore = storeDAO.getByID(other.fAVMStore.getId());
|
||||
if (fAVMStore == null)
|
||||
{
|
||||
fValid = false;
|
||||
@@ -155,7 +155,7 @@ class Lookup
|
||||
}
|
||||
fComponents.add(newComp);
|
||||
}
|
||||
fFinalStore = storeDAO.getByName(other.fFinalStore.getName());
|
||||
fFinalStore = storeDAO.getByID(other.fFinalStore.getId());
|
||||
if (fFinalStore == null)
|
||||
{
|
||||
fValid = false;
|
||||
|
Reference in New Issue
Block a user