refs #5051 limit stmt
gitea/salix/pipeline/head There was a failure building this commit Details

This commit is contained in:
Alexandre Riera 2023-01-03 10:20:44 +01:00
parent 17a7bfbf3b
commit 0ae76746ae
1 changed files with 1 additions and 0 deletions

View File

@ -33,6 +33,7 @@ module.exports = Self => {
stmt.merge(conn.makeWhere(filter.where));
stmt.merge('GROUP BY code');
stmt.merge('ORDER BY dated ASC');
stmt.merge('LIMIT 10000000000000000000');
stmt.merge(conn.makePagination(filter));
return conn.executeStmt(stmt);