Skip to content

Commit 6094c51

Browse files
unicode party
1 parent 63be207 commit 6094c51

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -59,21 +59,22 @@ label:removed[]
5959
RETURN 1 as my\u0085identifier
6060
----
6161
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.
6464
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`.
6666

6767
a|
6868
label:functionality[]
6969
label:removed[]
7070
[source, cypher, role="noheader"]
7171
----
72-
RETURN 1 as my$Identifier
72+
RETURN 1 as my\u0024Identifier
7373
----
7474
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`.
7778

7879
The following Unicode Characters are removed in identifiers:
7980
`\u0000`, `\u0001`, `\u0002`, `\u0003`, `\u0004`, `\u0005`, `\u0006`, `\u0007`,

0 commit comments

Comments
 (0)