Skip to content

Commit

Permalink
document new unicode deprecation notification for the future 5.15 rel…
Browse files Browse the repository at this point in the history
…ease
  • Loading branch information
nadja-muller committed Nov 16, 2023
1 parent d1bc032 commit 781f12b
Showing 1 changed file with 21 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,27 @@ RETURN nullIf(v1, v2)
| Introduction of a xref::functions/scalar.adoc#functions-nullIf[nullIf()] function.
This function returns null if the two given parameters are equivalent, otherwise returns the value of the first parameter.

|===
[[cypher-deprecations-additions-removals-5.15]]
== Neo4j 5.15

=== Deprecated features
[cols="2", options="header"]
|===
| Feature
| Details

a|
label:functionality[]
label:deprecated[]
[source, cypher, role="noheader"]
----
RETURN 1 as my\u0085identifier
----
a|
The Unicode character \`\u0085` is deprecated for unescaped identifiers and will be considered as a whitespace character in the future. To continue using it, escape the identifier by adding backticks around the identifier.
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`.

|===

[[cypher-deprecations-additions-removals-5.13]]
Expand Down

0 comments on commit 781f12b

Please sign in to comment.