diff --git a/modules/ROOT/pages/errors/all-errors.adoc b/modules/ROOT/pages/errors/all-errors.adoc index 32e9308..05fee87 100644 --- a/modules/ROOT/pages/errors/all-errors.adoc +++ b/modules/ROOT/pages/errors/all-errors.adoc @@ -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. @@ -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. diff --git a/modules/ROOT/pages/notifications/all-notifications.adoc b/modules/ROOT/pages/notifications/all-notifications.adoc index 81b69aa..9b7f291 100644 --- a/modules/ROOT/pages/notifications/all-notifications.adoc +++ b/modules/ROOT/pages/notifications/all-notifications.adoc @@ -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 `{ <>1 }`, `{ <>2 }` is used. -Cause: `{ <> }`. -|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