fix: refs #7457 remove group by calc time reduce bellow 1s

This commit is contained in:
Pablo Natek 2024-11-11 07:27:50 +01:00
parent 78ee7e141d
commit fc61f7e4ab
1 changed files with 0 additions and 2 deletions

View File

@ -201,7 +201,6 @@ module.exports = Self => {
`);
stmt.merge(conn.makeWhere(filter.where));
stmt.merge(`GROUP BY o.id`);
stmt.merge(conn.makePagination(filter));
stmts.push(stmt);
stmts.push(`SET SESSION optimizer_search_depth = @_optimizer_search_depth`);
@ -214,7 +213,6 @@ module.exports = Self => {
const sql = ParameterizedSQL.join(stmts, ';');
const result = await conn.executeStmt(sql, myOptions);
return result[ordersIndex];
};
};