Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
59 changes: 59 additions & 0 deletions modules/ROOT/pages/notifications/all-notifications.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -1309,6 +1309,65 @@ Upgrade your client to a version that supports this type.
======
=====

[#_neo_clientnotification_statement_plannerversionunsupportedwarning]
=== Unsupported planner version

.Notification details
[cols="<1s,<4"]
|===
|Neo4j code
m|Neo.ClientNotification.Statement.PlannerVersionUnsupportedWarning
|Title
a|The requested planner version is no longer supported.
|Description
|The Cypher planner version is no longer supported. The default planner version is used instead.
|Category
m|UNSUPPORTED
|GQLSTATUS code
m|01N84
|Status description
a|warn: unsupported planner version. The Cypher planner version `{ <<value>> }` is no longer supported. The default planner version is used instead.
|Classification
m|UNSUPPORTED
|SeverityLevel
m|WARNING
|===

.Requesting an unsupported planner version
[.tabbed-example]
=====
[.include-with-GQLSTATUS-code]
======
Query::
+
[source,cypher]
----
CYPHER plannerVersion=v2026_03 RETURN 1 AS result
----

Returned GQLSTATUS code::
01N84

Returned status description::
warn: unsupported planner version. The Cypher planner version v2026_03 is no longer supported. The default planner version is used instead.
Suggestions for improvement::
Remove the `plannerVersion` option to use the default planner version, or specify a supported planner version.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I guess this is more in line of what is appropriate for this warning. Not sure about the exact wording.

Suggested change
Remove the `plannerVersion` option to use the default planner version, or specify a supported planner version.
Remove the `plannerVersion` option if the issue it was introduced for has been resolved, or contact Neo4j support for finding a different solution.

======
[.include-with-neo4j-code]
======
Query::

[source,cypher]
----
CYPHER plannerVersion=v2026_03 RETURN 1 AS result
----
Description of the returned code::
The Cypher planner version v2026_03 is no longer supported. The default planner version is used instead.
Suggestions for improvement::
Remove the `plannerVersion` option to use the default planner version, or specify a supported planner version.
======
=====


[#_deprecated_notifications]
== `DEPRECATION` notifications
Expand Down