Made exists operation low priority

This commit is contained in:
M66B 2020-01-26 08:44:14 +01:00
parent 2e38d0509f
commit 57ba228975
1 changed files with 1 additions and 0 deletions

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";