diff --git a/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc b/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc index f832259e2..a199cf61f 100644 --- a/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc +++ b/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc @@ -10,6 +10,34 @@ 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-5.7]] +== Version 5.7 + +=== Deprecated features + +[cols="2", options="header"] +|=== +| Feature +| Details + +a| +label:functionality[] +label:deprecated[] +[source, cypher, role="noheader"] +---- +CYPHER connectComponentsPlanner=greedy MATCH (a), (b) RETURN * +---- + +[source, cypher, role="noheader"] +---- +CYPHER connectComponentsPlanner=idp MATCH (a), (b) RETURN * +---- +a| + +The Cypher query option `connectComponentsPlanner` is deprecated and will be removed without a replacement. +The product's default behavior of using a cost-based IDP search algorithm when combining sub-plans will be kept. +|=== + [[cypher-deprecations-additions-removals-5.6]] == Version 5.6 diff --git a/modules/ROOT/pages/query-tuning/query-options.adoc b/modules/ROOT/pages/query-tuning/query-options.adoc index 4c756d198..e075f4f41 100644 --- a/modules/ROOT/pages/query-tuning/query-options.adoc +++ b/modules/ROOT/pages/query-tuning/query-options.adoc @@ -84,7 +84,7 @@ Using this option can significantly _increase_ the planning time of the query. [[cypher-connect-components-planner]] -== Cypher connect-components planner +== Cypher connect-components planner label:deprecated[] One part of the Cypher planner is responsible for combining sub-plans for separate patterns into larger plans - a task referred to as _connecting components_. @@ -117,6 +117,12 @@ Using this option can significantly _increase_ the planning time of the query bu |=== +[IMPORTANT] +==== +The Cypher query option `connectComponentsPlanner` is deprecated and will be removed without a replacement. +The product's default behavior of using a cost-based IDP search algorithm when combining sub-plans will be kept. +==== + [[cypher-update-strategy]] == Cypher update strategy