1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-01-18 21:28:54 +00:00

Made exists operation low priority

This commit is contained in:
M66B 2020-01-26 08:44:14 +01:00
parent 2e38d0509f
commit 57ba228975

View file

@ -35,6 +35,7 @@ public interface DaoOperation {
" WHEN operation.name = '" + EntityOperation.SYNC + "' THEN" +
" CASE WHEN folder.account IS NULL THEN -1 ELSE 1 END" + // outbox
" WHEN operation.name = '" + EntityOperation.FETCH + "' THEN 2" +
" WHEN operation.name = '" + EntityOperation.EXISTS + "' THEN 3" +
" ELSE 0" +
" END";