Skip to content
Merged
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,39 @@ The `trackedSince` column returns the time when usage statistics tracking starte
[[cypher-deprecations-additions-removals-5.7]]
== Version 5.7

=== New features

[cols="2", options="header"]
|===
| Feature
| Details

a|
label:functionality[]
label:new[]
[source, syntax]
----
CALL {
<inner>
} IN TRANSACTIONS [ OF <num> ROWS ]
[ ON ERROR CONTINUE / BREAK / FAIL ]
[ REPORT STATUS AS <v> ]
----

a|
New fine-grained control mechanism to control how an inner transaction impacts subsequent inner and/or outer transactions.

* `ON ERROR CONTINUE` - will ignore errors and continue with the execution of subsequent inner transactions when one of them fails.

* `ON ERROR BREAK` - will ignore an error and stop the execution of subsequent inner transactions.

* `ON ERROR FAIL` - will fail in case of an error.

* `REPORT STATUS AS <v>` - reports the execution status of the inner transaction (a map value including the fields `started` `committed`, `transactionId`, and `errorMessage`). This flag is disallowed for `ON ERROR FAIL`.

|===


=== Deprecated features

[cols="2", options="header"]
Expand Down