Skip to content

Commit 970b9d6

Browse files
Update conditions and messages of 22N51, 42N00, 42N11, 25N05, and 42N39
1 parent 2032e58 commit 970b9d6

File tree

6 files changed

+20
-10
lines changed

6 files changed

+20
-10
lines changed

modules/ROOT/pages/errors/gql-errors/22N51.adoc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
= 22N51
2+
label:new[Changed in 2025.03]
23

34
== Status description
4-
error: data exception - database or alias does not exist. A [composite] database or alias with the name `{ <<db>> }` does not exist. Verify that the spelling is correct.
5+
error: data exception - graph reference not found. A graph reference with the name `{ <<db>> }` does not exist. Verify that the spelling is correct.
56

67

78
ifndef::backend-pdf[]

modules/ROOT/pages/errors/gql-errors/25N05.adoc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
= 25N05
2+
label:new[Changed in 2025.03]
23

34
== Status description
4-
error: invalid transaction state - transaction terminated or closed. The transaction has been terminated or closed.
5+
error: invalid transaction state - transaction closed. Transaction has been closed.
56

67
ifndef::backend-pdf[]
78
[discrete.glossary]

modules/ROOT/pages/errors/gql-errors/42N00.adoc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
= 42N00
2+
label:new[Changed in 2025.03]
23

34
== Status description
4-
error: syntax error or access rule violation - no such database. The database `{ <<db>> }` was not found. Verify that the spelling is correct.
5+
error: syntax error or access rule violation - graph reference not found. The database `{ <<db>> }` was not found. Verify that the spelling is correct.
56

67
ifndef::backend-pdf[]
78
[discrete.glossary]

modules/ROOT/pages/errors/gql-errors/42N11.adoc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
= 42N11
2+
label:new[Changed in 2025.03]
23

34
== Status description
4-
error: syntax error or access rule violation - database or alias already exists. A `[composite]` database or alias with the name `{ <<db>> }` already exists.
5+
error: syntax error or access rule violation - graph reference already exists. A graph reference with the name `{ <<db>> }` already exists.
56

67
ifndef::backend-pdf[]
78
[discrete.glossary]

modules/ROOT/pages/errors/gql-errors/42N39.adoc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
= 42N39
2+
label:new[Changed in 2025.03]
23

34
== Status description
4-
error: syntax error or access rule violation - incompatible return columns. All subqueries in a `UNION` clause must have the same return column names.
5+
error: syntax error or access rule violation - incompatible return columns. All `{<<context>>}` in a UNION clause must have the same return column names.
56

67
ifndef::backend-pdf[]
78
[discrete.glossary]

modules/ROOT/pages/errors/gql-errors/index.adoc

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -311,8 +311,9 @@ Status description:: error: data exception - unable to use specified runtime. Ca
311311
Status description:: error: data exception - CSV buffer size overflow. Cannot read a CSV field larger than the set buffer size. Ensure the field does not have an unterminated quote, or increase the buffer size via 'dbms.import.csv.buffer_size'.
312312

313313
=== xref:errors/gql-errors/22N51.adoc[22N51]
314+
label:new[Changed in 2025.03]
314315

315-
Status description:: error: data exception - database or alias does not exist. A [composite] database or alias with the name `{ <<db>> }` does not exist. Verify that the spelling is correct.
316+
Status description:: error: data exception - graph reference not found. A graph reference with the name `{ <<db>> }` does not exist. Verify that the spelling is correct.
316317

317318
=== xref:errors/gql-errors/22N52.adoc[22N52]
318319

@@ -557,8 +558,9 @@ Status description:: error: invalid transaction state - specified transaction do
557558
Transaction `{ <<transactionId>> }` does not exist.
558559

559560
=== xref:errors/gql-errors/25N05.adoc[25N05]
561+
label:new[Changed in 2025.03]
560562

561-
Status description:: error: invalid transaction state - transaction terminated or closed. The transaction has been terminated or closed.
563+
Status description:: error: invalid transaction state - transaction closed. Transaction has been closed.
562564

563565
=== xref:errors/gql-errors/25N06.adoc[25N06]
564566

@@ -836,8 +838,9 @@ Status description:: info: invalid call signature. The procedure or function `{
836838
Status description:: error: syntax error or access rule violation - no longer valid syntax. `{ <<msg>> }`
837839

838840
=== xref:errors/gql-errors/42N00.adoc[42N00]
841+
label:new[Changed in 2025.03]
839842

840-
Status description:: error: syntax error or access rule violation - no such database. The database `{ <<db>> }` was not found. Verify that the spelling is correct.
843+
Status description:: error: syntax error or access rule violation - graph reference not found. The database `{ <<db>> }` was not found. Verify that the spelling is correct.
841844

842845
=== xref:errors/gql-errors/42N01.adoc[42N01]
843846

@@ -880,8 +883,9 @@ Status description:: error: syntax error or access rule violation - no such user
880883
Status description:: error: syntax error or access rule violation - no such role. A role with the name `{ <<role>> }` was not found. Verify that the spelling is correct.
881884

882885
=== xref:errors/gql-errors/42N11.adoc[42N11]
886+
label:new[Changed in 2025.03]
883887

884-
Status description:: error: syntax error or access rule violation - database or alias already exists. A `[composite]` database or alias with the name `{ <<db>> }` already exists.
888+
Status description:: error: syntax error or access rule violation - graph reference already exists. A graph reference with the name `{ <<db>> }` already exists.
885889

886890
=== xref:errors/gql-errors/42N12.adoc[42N12]
887891

@@ -974,8 +978,9 @@ Status description:: error: syntax error or access rule violation - invalid use
974978
Status description:: error: syntax error or access rule violation - duplicate return item name. Return items must have unique names.
975979

976980
=== xref:errors/gql-errors/42N39.adoc[42N39]
981+
label:new[Changed in 2025.03]
977982

978-
Status description:: error: syntax error or access rule violation - incompatible return columns. All subqueries in a `UNION` clause must have the same return column names.
983+
Status description:: error: syntax error or access rule violation - incompatible return columns. All `{<<context>>}` in a UNION clause must have the same return column names.
979984

980985
=== xref:errors/gql-errors/42N40.adoc[42N40]
981986

0 commit comments

Comments
 (0)