Skip to content
Snippets Groups Projects
Commit 998019df authored by kaloyane's avatar kaloyane
Browse files

[LMS-2087] Eager archiving (part 4 - minor bugfix)

SVN: 20311
parent 72f91dfc
No related branches found
No related tags found
No related merge requests found
...@@ -349,7 +349,7 @@ final class ExternalDataDAO extends AbstractGenericEntityWithPropertiesDAO<Exter ...@@ -349,7 +349,7 @@ final class ExternalDataDAO extends AbstractGenericEntityWithPropertiesDAO<Exter
return session return session
.createQuery( .createQuery(
"UPDATE VERSIONED " + TABLE_NAME "UPDATE VERSIONED " + TABLE_NAME
+ " SET status = :status, isPresentInArchive = :presentInArchive" + " SET status = :status, presentInArchive = :presentInArchive"
+ " WHERE code IN (:codes) ") + " WHERE code IN (:codes) ")
.setParameter("status", status) .setParameter("status", status)
.setParameter("presentInArchive", presentInArchive) .setParameter("presentInArchive", presentInArchive)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment