You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modules/ROOT/pages/errors/gql-errors/22NAC.adoc
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,10 @@
1
1
= 22NAC
2
2
3
3
== Status description
4
-
error: data exception - characters after quote in CSV field. At `{ <<input1>> }` @ position `{ <<pos>> }` - there's a field starting with a quote and whereas it ends that quote there seems to be characters in that field after that ending quote. That isn't supported. This is what was read: `{ <<input2>> }`.
4
+
error: data exception - characters after quote in CSV field. Characters after an ending quote in a CSV field are not supported. See { <<input>>1 } at position { <<pos>> }. This is read as { <<input>>2 }.
5
5
6
6
== Explanation
7
-
When a CSV file has a field that starts with a quote has content after the ending quote that file is formatted incorrectly and trying to read such a file with `LOAD CSV` will result in an error.
7
+
When a CSV file has a field that starts with a quote has content after the ending quote that file is formatted incorrectly and trying to§ read such a file with `LOAD CSV` will result in an error.
8
8
9
9
== Example scenario
10
10
@@ -22,7 +22,7 @@ LOAD CSV 'somefile.csv' AS line RETURN count(line)
22
22
The following error will be thrown:
23
23
[source]
24
24
----
25
-
error: data exception - characters after quote in CSV field. At 'somefile.csv' @ position 14 - there's a field starting with a quote and whereas it ends that quote there seems to be characters in that field after that ending quote. That isn't supported. This is what I read: 'y"y'
25
+
error: data exception - characters after quote in CSV field. Characters after an ending quote in a CSV field are not supported. See `'somefile.csv'` at position `14`. This is read as `'y"y'`.
Copy file name to clipboardExpand all lines: modules/ROOT/pages/errors/gql-errors/22NAD.adoc
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
= 22NAD
2
2
3
3
== Status description
4
-
error: data exception - missing end quote in CSV field. At '{ <<input1>> }' @ position `{ <<dim1>> }` - Missing end for quote (\``{ <<input2>> }`\`) which started on line `{ <<dim2>> }`.
4
+
error: data exception - missing end quote in CSV field. Missing end quote at position { <<pos>> } in { <<input>> }.
5
5
6
6
== Explanation
7
7
When a CSV file has a field that starts with a quote but misses an ending quote that file is formatted incorrectly and trying to read such a file with `LOAD CSV` will result in an error.
@@ -22,7 +22,7 @@ LOAD CSV 'somefile.csv' AS line RETURN count(line)
22
22
The following error will be thrown:
23
23
[source]
24
24
----
25
-
error: data exception - missing end quote in CSV field. At 'somefile.csv' @ position 15 - Missing end for quote (\`"\`) which started on line 3.
25
+
error: data exception - missing end quote in CSV field. Missing end quote at position `15` in `'somefile.csv'`.
Copy file name to clipboardExpand all lines: modules/ROOT/pages/errors/gql-errors/22NAE.adoc
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
= 22NAE
2
2
3
3
== Status description
4
-
error: data exception - multi-line field in illegal CSV context. At `{ <<input>> }` @ position `{ <<pos>> }` - Multi-line fields are illegal in this context and so this might suggest that there's a field with a start quote, but a missing end quote.
4
+
error: data exception - multi-line field in illegal CSV context. Multi-line fields are illegal in this context. Verify that there is not a missing end quote in { <<input>> } at position { <<pos>> }.
5
5
6
6
== Explanation
7
7
When a CSV file has a field that starts with a quote has content after the ending quote that file is formatted incorrectly and trying to read such a file with `LOAD CSV` will result in an error.
@@ -24,7 +24,7 @@ LOAD CSV 'somefile.csv' AS line RETURN count(line)
24
24
The following error will be thrown:
25
25
[source]
26
26
----
27
-
error: data exception - multi-line field in illegal CSV context. At 'somefile.csv' @ position 15 - Multi-line fields are illegal in this context and so this might suggest that there's a field with a start quote, but a missing end quote.
27
+
error: data exception - multi-line field in illegal CSV context. Multi-line fields are illegal in this context. Verify that there is not a missing end quote in { 'somefile.csv' } at position { 15 }.
Copy file name to clipboardExpand all lines: modules/ROOT/pages/errors/gql-errors/index.adoc
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -586,15 +586,15 @@ Status description:: error: data exception - mixed type list for property-based
586
586
587
587
=== xref:errors/gql-errors/22NAC.adoc[22NAC]
588
588
589
-
Status description:: error: data exception - characters after quote in CSV field. At `{ <<input1>> }` @ position `{ <<pos>> }` - there's a field starting with a quote and whereas it ends that quote there seems to be characters in that field after that ending quote. That isn't supported. This is what was read: `{ <<input2>> }`.
589
+
Status description:: error: data exception - characters after quote in CSV field. Characters after an ending quote in a CSV field are not supported. See { <<input>>1 } at position { <<pos>> }. This is read as { <<input>>2 }.
590
590
591
591
=== xref:errors/gql-errors/22NAD.adoc[22NAD]
592
592
593
-
Status description:: error: data exception - missing end quote in CSV field. At `{ <<input1>> }` @ position `{ <<dim1>> }` - Missing end for quote (\``{ <<input2>> }`\`) which started on line `{ <<dim2>> }`.
593
+
Status description:: error: data exception - missing end quote in CSV field. Missing end quote at position { <<pos>> } in { <<input>> }.
594
594
595
595
=== xref:errors/gql-errors/22NAE.adoc[22NAE]
596
596
597
-
Status description:: error: data exception - multi-line field in illegal CSV context. At `{ <<input>> }` @ position `{ <<pos>> }` - Multi-line fields are illegal in this context and so this might suggest that there's a field with a start quote, but a missing end quote.
597
+
Status description:: error: data exception - multi-line field in illegal CSV context. Multi-line fields are illegal in this context. Verify that there is not a missing end quote in { <<input>> } at position { <<pos>> }.
0 commit comments