8000 Feature/zkd index speedup getnextzvalue by goedderz · Pull Request #13799 · arangodb/arangodb · GitHub
[go: up one dir, main page]

Skip to content

Feature/zkd index speedup getnextzvalue #13799

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 4 commits into from
Mar 25, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Change order of actual/expected in test assertion
  • Loading branch information
goedderz committed Mar 24, 2021
commit 3df773f0dd1d0aede1c6b57f87abac101bfd73f2
5 changes: 3 additions & 2 deletions tests/js/server/aql/aql-optimizer-zkdindex-multi.js
Original file line number Diff line number Diff line change
Expand Up @@ -144,9 +144,10 @@ function optimizerRuleZkd2dIndexTestSuite() {
}
const executeRes = AQL_EXECUTE(query);
const res = executeRes.json;
res.sort();
const expected = productSet(x, y, z, w);
assertEqual(res, expected.sort());
res.sort();
expected.sort();
assertEqual(expected, res, JSON.stringify({query}));
};
}
}
Expand Down
0