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
One unicode was turned into whitespace, the others were just removed as
valid in non-delimited identifiers
---------
Co-authored-by: Jens Pryce-Åklundh <[email protected]>
The Unicode character \`\u0085` has been removed for unescaped identifiers and is now considered a whitespace character.
38
+
To continue using it, escape the identifier by adding backticks around it.
39
+
This applies to all unescaped identifiers in Cypher, such as label expressions, properties, variable names, or parameters.
40
+
In the given example, the quoted identifier would be \`my�identifier`.
41
+
42
+
a|
43
+
label:functionality[]
44
+
label:removed[]
45
+
[source, cypher, role="noheader"]
46
+
----
47
+
RETURN 1 as my$Identifier
48
+
----
49
+
a|
50
+
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.
51
+
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`.
52
+
53
+
The following Unicode Characters are removed in identifiers:
0 commit comments