8000 Introduce callstack splitting to avoid stackoverflows with large AQL queries by mpoeter · Pull Request #14351 · arangodb/arangodb · GitHub
[go: up one dir, main page]

Skip to content

Introduce callstack splitting to avoid stackoverflows with large AQL queries #14351

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
Jun 30, 2021
Prev Previous commit
Next Next commit
Fix test.
  • Loading branch information
mpoeter committed Jun 29, 2021
commit 77cf2daf4e852582796acd6d70c20ecb652238b4
2 changes: 1 addition & 1 deletion tests/js/server/aql/aql-queries-simple.js
Original file line number Diff line number Diff line change
Expand Up @@ -1337,7 +1337,7 @@ function ahuacatlQuerySimpleTestSuite () {

testLargeQuery : function() {
let q = "";
const cnt = 1000;
const cnt = 990;
for (let i = 0; i < cnt; ++i) {
q += `LET v${i} = NOOPT(1)\n`;
}
Expand Down
0