diff --git a/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc b/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc index 8c82b53bb..8a4badcca 100644 --- a/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc +++ b/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc @@ -115,6 +115,11 @@ RETURN count(ALL n.prop) | Added a new keyword xref::functions/aggregating.adoc#counting_with_and_without_duplicates[ALL], explicitly defining that the aggregate function is not `DISTINCT`. This is a mirror of the already existing keyword `DISTINCT` for functions. +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.14]]