From dbbc3b0d45a42c751019279f0f6f014fd69003ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bastien=20Lou=C3=ABrat?= Date: Wed, 8 Jan 2025 13:17:08 +0000 Subject: [PATCH 1/2] The Cypher query option `eagerAnalyzer` is deprecated --- ...ions-additions-removals-compatibility.adoc | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc b/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc index 1b97862d8..4eef2e23b 100644 --- a/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc +++ b/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc @@ -16,6 +16,36 @@ New features are added to the language continuously, and occasionally, some feat This section lists all of the features that have been removed, deprecated, added, or extended in different Cypher versions. Replacement syntax for deprecated and removed features are also indicated. +[[cypher-deprecations-additions-removals-2025.01]] +== Neo4j 2025.01 + +=== Deprecated features + +[cols="2", options="header"] +|=== +| Feature +| Details + +a| +label:functionality[] +label:deprecated[] +[source, cypher, role="noheader"] +---- +CYPHER eagerAnalyzer=ir MATCH (a)-->(b) DELETE b RETURN a +---- + +[source, cypher, role="noheader"] +---- +CYPHER eagerAnalyzer=lp MATCH (a)-->(b) DELETE b RETURN a +---- +a| + +The Cypher query option `eagerAnalyzer` is deprecated and will be removed without a replacement. +The option is ignored, eagerness analysis is systematically performed on the logical plan regardless of the value provided. + +|=== + + [[cypher-deprecations-additions-removals-5.26]] == Neo4j 5.26 @@ -162,6 +192,7 @@ USE my.db ... | In xref:clauses/use.adoc[`USE`] clauses, databases and aliases with unquoted `.` are deprecated unless the `.` is used to indicate that the database or alias belongs to a composite database. Names containing `.` should be quoted using backticks. For example, `USE `my.db`` is valid. + |=== From 7cd04b5e27a820ed57706f643611d4534dd730a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bastien=20Lou=C3=ABrat?= Date: Wed, 8 Jan 2025 15:32:51 +0000 Subject: [PATCH 2/2] Update the wording of the deprecation notice --- .../pages/deprecations-additions-removals-compatibility.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc b/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc index 4eef2e23b..78da37687 100644 --- a/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc +++ b/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc @@ -41,7 +41,7 @@ CYPHER eagerAnalyzer=lp MATCH (a)-->(b) DELETE b RETURN a a| The Cypher query option `eagerAnalyzer` is deprecated and will be removed without a replacement. -The option is ignored, eagerness analysis is systematically performed on the logical plan regardless of the value provided. +Eagerness analysis is systematically performed on the logical plan regardless of the value provided. |===