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/deprecations-additions-removals-compatibility.adoc
+7-6Lines changed: 7 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -59,21 +59,22 @@ label:removed[]
59
59
RETURN 1 as my\u0085identifier
60
60
----
61
61
a|
62
-
The Unicode character `\u0085` has been removed for unescaped identifiers and is now considered a whitespace character.
63
-
To continue using it, escape the identifier by adding backticks around it.
62
+
The Unicode character `\u0085` (`Next Line`) has been removed for unescaped identifiers and is now considered a whitespace character.
63
+
To continue using it, escape the identifier by adding backticks (++``++) around it.
64
64
This applies to all unescaped identifiers in Cypher, such as label expressions, properties, variable names, or parameters.
65
-
In the given example, the quoted identifier would be \`my�identifier`.
65
+
In the given example, the quoted identifier would be `my\u0085identifier`.
66
66
67
67
a|
68
68
label:functionality[]
69
69
label:removed[]
70
70
[source, cypher, role="noheader"]
71
71
----
72
-
RETURN 1 as my$Identifier
72
+
RETURN 1 as my\u0024Identifier
73
73
----
74
74
a|
75
-
The character with the Unicode representation `\u0024` has been removed for unescaped identifiers. To continue using it, escape the identifier by adding backticks (++``++) around the identifier.
76
-
This applies to all unescaped identifiers in Cypher, such as label expressions, properties, variable names, or parameters. In the given example, the quoted identifier would be \`my$identifier`.
75
+
The character with the Unicode representation `\u0024` (`$`) has been removed for unescaped identifiers.
76
+
To continue using it, escape the identifier by adding backticks (++``++) around the identifier.
77
+
This applies to all unescaped identifiers in Cypher, such as label expressions, properties, variable names, or parameters. In the given example, the quoted identifier would be `my\u0024identifier`.
77
78
78
79
The following Unicode Characters are removed in identifiers:
0 commit comments