mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Merged HEAD-BUG-FIX (4.3/Cloud) to HEAD (4.3/Cloud)
68189: Merged PLATFORM1 (4.3/Cloud) to HEAD-BUG-FIX (4.3/Cloud) 63165: ACE-482: sinceTxId clause in SQL query is no longer generated unless sinceTxId is non-null git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@68454 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -35,7 +35,9 @@
|
|||||||
where
|
where
|
||||||
node.type_qname_id <> #{sysDeletedType}
|
node.type_qname_id <> #{sysDeletedType}
|
||||||
AND node.store_id = #{storeId}
|
AND node.store_id = #{storeId}
|
||||||
AND node.transaction_id > #{sinceTxId}
|
<if test="sinceTxId != null">
|
||||||
|
AND node.transaction_id > #{sinceTxId}
|
||||||
|
</if>
|
||||||
<if test="hasPredicate">
|
<if test="hasPredicate">
|
||||||
AND
|
AND
|
||||||
<foreach item="item" index="index" collection="predicateParts">
|
<foreach item="item" index="index" collection="predicateParts">
|
||||||
|
Reference in New Issue
Block a user