mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Fix for ALF-786: WCM Cluster / Lucene: Searching in staging returns duplicate entries (when concurrently submtting)
- fixed duplication arising from indexing 0-1 and 0-2 against the index for near simultaneous snapshots - tracking has not been modified nor has index rebuild - the latest index info from the AVM index is definitive and complete - we do not have to do additional work as we do for DM git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@19898 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -283,4 +283,27 @@ public abstract class AbstractAVMVersionRootDAOImpl implements AVMVersionRootDAO
|
||||
protected abstract AVMVersionLayeredNodeEntryEntity createVersionLayeredNodeEntryEntity(long versionRootId, String md5sum, String path);
|
||||
protected abstract int deleteVersionLayeredNodeEntryEntities(long versionRootId);
|
||||
protected abstract List<AVMVersionLayeredNodeEntryEntity> getVersionLayeredNodeEntryEntities(long storeId);
|
||||
|
||||
|
||||
protected abstract List<AVMVersionRootEntity> getVersionRootEntitiesByVersionsTo(long storeId, long to);
|
||||
protected abstract List<AVMVersionRootEntity> getVersionRootEntitiesByVersionsFrom(long storeId, long from);
|
||||
protected abstract List<AVMVersionRootEntity> getVersionRootEntitiesByVersionsBetween(long storeId, long from, long to);
|
||||
|
||||
public List<AVMVersionRootEntity> getByVersionsTo(long id, int version)
|
||||
{
|
||||
return getVersionRootEntitiesByVersionsTo(id, version);
|
||||
}
|
||||
|
||||
public List<AVMVersionRootEntity> getByVersionsFrom(long id, int version)
|
||||
{
|
||||
return getVersionRootEntitiesByVersionsFrom(id, version);
|
||||
}
|
||||
|
||||
public List<AVMVersionRootEntity> getByVersionsBetween(long id, int startVersion, int endVersion)
|
||||
{
|
||||
return getVersionRootEntitiesByVersionsBetween(id, startVersion, endVersion);
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user