Skip to content

Remove old Neo4j statuses. #291

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 5, 2025
Merged
Show file tree
Hide file tree
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
6 changes: 0 additions & 6 deletions modules/ROOT/pages/errors/all-errors.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,6 @@ This is a complete list of all client errors Neo4j may return, and what they mea
An illegal chain of aliases has been detected.
This request cannot be executed.

| Neo.ClientError.Fabric.AccessMode
| The request could not be completed due to an access mode violation

| Neo.ClientError.General.ForbiddenOnReadOnlyDatabase
| This is a read-only database, writing or modifying the database is not allowed.

Expand Down Expand Up @@ -421,9 +418,6 @@ This is a complete list of all database errors Neo4j may return, and what they m
| Neo.DatabaseError.Database.Unknown
| Unknown database management error.

| Neo.DatabaseError.Fabric.RemoteExecutionFailed
| The database was unable to execute a remote part of the statement.

| Neo.DatabaseError.General.IndexCorruptionDetected
|
The request (directly or indirectly) referred to an index that is in a failed state.
Expand Down
130 changes: 0 additions & 130 deletions modules/ROOT/pages/notifications/all-notifications.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -1218,136 +1218,6 @@ The query contains an aggregation function that skips null values.
======
=====

[#_unsupported_notifications]
== `UNSUPPORTED` notifications

Unsupported notifications are returned when the query or command is trying to use features that are not supported by the current system or using experimental features that should not be used in production.

[#_neo_clientnotification_statement_runtimeunsupportedwarning]
=== Unsupported runtime

.Notification details
[cols="<1s,<4"]
|===
|Neo4j code
m|Neo.ClientNotification.Statement.RuntimeUnsupportedWarning
|Title
a|This query is not supported by the chosen runtime.
|Description
|Selected runtime is unsupported for this query, please use a different runtime instead or fallback to default.
(`%s`)
|Category
m|UNSUPPORTED
|GQLSTATUS code
m|01N40
|Status description
a|warn: unsupported runtime.
The query cannot be executed with `{ <<preparserInput>>1 }`, `{ <<preparserInput>>2 }` is used.
Cause: `{ <<msg>> }`.
|Classification
m|UNSUPPORTED
|SeverityLevel
m|WARNING
|===

.A runtime is not supported by a Cypher command
[.tabbed-example]
=====
[.include-with-GQLSTATUS-code]
======
Query::
+
[source,cypher]
----
EXPLAIN CYPHER runtime=pipelined SHOW INDEXES YIELD *
----

Returned GQLSTATUS code::
01N40

Returned status description::
warn: unsupported runtime.
The query cannot be executed with `runtime=pipelined`, `runtime=slotted` is used.
Cause: Pipelined does not yet support the plans including `ShowIndexes`, use another runtime.

Suggestions for improvement::
Use a different runtime or remove the runtime option to run the query with the default runtime:
+
[source,cypher]
----
SHOW INDEXES YIELD *
----
======
[.include-with-neo4j-code]
======

Query::
+
[source,cypher]
----
CYPHER runtime=pipelined SHOW INDEXES YIELD *
----

Description of the returned code::
Selected runtime is unsupported for this query, please use a different runtime instead or fallback to default.
(Pipelined does not yet support the plans including `ShowIndexes`, use another runtime.)

Suggestions for improvement::
Use a different runtime or remove the runtime option to run the query with the default runtime:
+
[source,cypher]
----
SHOW INDEXES YIELD *
----

======
=====

[role=label--deprecated-5.14]
[#_neo_clientnotification_statement_runtimeexperimental]
=== RuntimeExperimental

[NOTE]
====
The usage of this notification has been removed since Neo4j 5.14.
====

.Notification details
[cols="<1s,<4"]
|===
|Neo4j code
m|Neo.ClientNotification.Statement.RuntimeExperimental
|Title
a|This feature is experimental and should not be used in production systems.
|Description
|You are using an experimental feature (`%s`)
|Category
m|UNSUPPORTED
|SeverityLevel
m|WARNING
|===

.Use of the parallel runtime
====
Query::
+
[source,cypher]
----
CYPHER runtime=parallel MATCH (n) RETURN (n)
----

Description of the returned code::
You are using an experimental feature (The parallel runtime is experimental and might suffer from instability and potentially correctness issues.)

Suggestions for improvement::
The parallel runtime should not be used in production. Choose another runtime or remove the option to use the default runtime:
+
[source,cypher]
----
MATCH (n) RETURN (n)
----
====

[#_deprecated_notifications]
== `DEPRECATION` notifications

Expand Down