Убрал сортировку из подсчета количества элементов

Нет смысла сортировать элементы при расчете коли
This commit is contained in:
Struchkov Mark 2022-02-14 12:30:12 +03:00
parent 2547d737dc
commit 89f7cf957b

View File

@ -196,9 +196,7 @@ public class CriteriaJooqFilter {
// }
// }
// }
final SelectConditionStep<? extends Record> where = from.where(conditions);
setSort(where);
return where;
return from.where(conditions);
}
private SelectSeekStepN<? extends Record> setSort(SelectConditionStep<? extends Record> where) {