Skip to content

Commit fff401d

Browse files
fix on error continue example
1 parent 1174bb5 commit fff401d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/ROOT/pages/subqueries/subqueries-in-transactions.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -570,7 +570,7 @@ A new default can be set using link:{neo4j-docs-base-uri}/operations-manual/curr
570570

571571
A maximum retry duration can be specified for individual queries as follows: `ON ERROR RETRY [FOR] <duration> SEC[OND[S]]`, where <duration> is an `INTEGER` or `FLOAT` value representing seconds that is greater than or equal to `0`.
572572
Decimal values are allowed, and the `<duration>` can be set with a parameter.
573-
Note that this <duration> overrides the default value.
573+
Note that this `<duration>` overrides the default value.
574574

575575
The duration timer starts when the first retry is scheduled.
576576
As a result, regardless of the specified duration, a minimum of one retry will be attempted.
@@ -877,7 +877,7 @@ CALL (row) {
877877
MERGE (m:Movie {movieId: row.movieId})
878878
MERGE (y:Year {year: row.year})
879879
MERGE (m)-[r:RELEASED_IN]->(y)
880-
} IN 2 CONCURRENT TRANSACTIONS OF 10 ROWS ON CONTINUE REPORT STATUS as status
880+
} IN 2 CONCURRENT TRANSACTIONS OF 10 ROWS ON ERROR CONTINUE REPORT STATUS as status
881881
WITH status
882882
WHERE status.errorMessage IS NOT NULL
883883
RETURN status.transactionId AS transaction, status.committed AS commitStatus, status.errorMessage AS errorMessage

0 commit comments

Comments
 (0)