8000 Added backport for BTS-413 by cpjulia · Pull Request #17949 · arangodb/arangodb · GitHub
[go: up one dir, main page]

Skip to content

Added backport for BTS-413 #17949

8000 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 10 commits into from
Jan 19, 2023
Prev Previous commit
Next Next commit
Merge branch '3.10' into feature-3.10/BTS-413
  • Loading branch information
KVS85 authored Jan 18, 2023
commit 63f8a9e2c9dc82551f0bec56194801a8fe88720e
12 changes: 12 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,18 @@ v3.10.3 (XXXX-XX-XX)
* BTS-413: Added more explanatory messages for when the user cannot see the
statistics for a node in the UI when in cluster mode.

* Fix coordinator segfault in AQL queries in which the query is invoked from
within a JavaScript context (e.g. from Foxx or from the server's console mode)
**and** the query has multiple coordinator snippets of which except the
outermost one invokes a JavaScript function.
Instead of crashing, coordinators will now respond with the exception "no v8
context available to enter for current transaction context".
For AQL queries that called one of the AQL functions `CALL` or `APPLY` with a
fixed function name, e.g. `APPLY('CONCAT', ...)`, it is now also assumed
correctly that no JavaScript is needed, except if the fixed function name is
the name of a user-defined function.
This fixes an issue described in OASIS-24962.

* BTS-1192: fix a potential race during hot backup creation, which could result
in error messages such as `{backup} Source file engine_rocksdb/002516.sst does
not have a hash file.` during hot backup creation. However, despite the error
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.
0