Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
blouerat authored and JPryce-Aklundh committed Jan 9, 2025
1 parent c66b0c2 commit c5d9c2f
Showing 1 changed file with 31 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ 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]]
[[cypher-deprecations-additions-removals-2025.02]]
== Neo4j 2025.02

=== Removed features
Expand Down Expand Up @@ -172,6 +172,35 @@ This allows a database to be seeded up to a specific date or transaction ID.
For more information, see link:{neo4j-docs-base-uri}/operations-manual/{page-version}/clustering/databases/#cluster-seed-uri[Operations Manual -> Clustering -> Seed from URI].
|===

[[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.
Eagerness analysis is systematically performed on the logical plan regardless of the value provided.

|===

[[cypher-deprecations-additions-removals-5.26]]
== Neo4j 5.26

Expand Down Expand Up @@ -318,6 +347,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.

|===


Expand Down

0 comments on commit c5d9c2f

Please sign in to comment.