Skip to content

Commit e4de7ae

Browse files
Lojjsrenetapopova
authored andcommitted
Remove old Neo4j statuses.
These have been deprecated for over a year.
1 parent 51b4a9e commit e4de7ae

File tree

2 files changed

+0
-136
lines changed

2 files changed

+0
-136
lines changed

modules/ROOT/pages/errors/all-errors.adoc

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,6 @@ This is a complete list of all client errors Neo4j may return, and what they mea
3939
An illegal chain of aliases has been detected.
4040
This request cannot be executed.
4141

42-
| Neo.ClientError.Fabric.AccessMode
43-
| The request could not be completed due to an access mode violation
44-
4542
| Neo.ClientError.General.ForbiddenOnReadOnlyDatabase
4643
| This is a read-only database, writing or modifying the database is not allowed.
4744

@@ -414,9 +411,6 @@ This is a complete list of all database errors Neo4j may return, and what they m
414411
| Neo.DatabaseError.Database.Unknown
415412
| Unknown database management error.
416413

417-
| Neo.DatabaseError.Fabric.RemoteExecutionFailed
418-
| The database was unable to execute a remote part of the statement.
419-
420414
| Neo.DatabaseError.General.IndexCorruptionDetected
421415
|
422416
The request (directly or indirectly) referred to an index that is in a failed state.

modules/ROOT/pages/notifications/all-notifications.adoc

Lines changed: 0 additions & 130 deletions
Original file line numberDiff line numberDiff line change
@@ -1218,136 +1218,6 @@ The query contains an aggregation function that skips null values.
12181218
======
12191219
=====
12201220

1221-
[#_unsupported_notifications]
1222-
== `UNSUPPORTED` notifications
1223-
1224-
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.
1225-
1226-
[#_neo_clientnotification_statement_runtimeunsupportedwarning]
1227-
=== Unsupported runtime
1228-
1229-
.Notification details
1230-
[cols="<1s,<4"]
1231-
|===
1232-
|Neo4j code
1233-
m|Neo.ClientNotification.Statement.RuntimeUnsupportedWarning
1234-
|Title
1235-
a|This query is not supported by the chosen runtime.
1236-
|Description
1237-
|Selected runtime is unsupported for this query, please use a different runtime instead or fallback to default.
1238-
(`%s`)
1239-
|Category
1240-
m|UNSUPPORTED
1241-
|GQLSTATUS code
1242-
m|01N40
1243-
|Status description
1244-
a|warn: unsupported runtime.
1245-
The query cannot be executed with `{ <<preparserInput>>1 }`, `{ <<preparserInput>>2 }` is used.
1246-
Cause: `{ <<msg>> }`.
1247-
|Classification
1248-
m|UNSUPPORTED
1249-
|SeverityLevel
1250-
m|WARNING
1251-
|===
1252-
1253-
.A runtime is not supported by a Cypher command
1254-
[.tabbed-example]
1255-
=====
1256-
[.include-with-GQLSTATUS-code]
1257-
======
1258-
Query::
1259-
+
1260-
[source,cypher]
1261-
----
1262-
EXPLAIN CYPHER runtime=pipelined SHOW INDEXES YIELD *
1263-
----
1264-
1265-
Returned GQLSTATUS code::
1266-
01N40
1267-
1268-
Returned status description::
1269-
warn: unsupported runtime.
1270-
The query cannot be executed with `runtime=pipelined`, `runtime=slotted` is used.
1271-
Cause: Pipelined does not yet support the plans including `ShowIndexes`, use another runtime.
1272-
1273-
Suggestions for improvement::
1274-
Use a different runtime or remove the runtime option to run the query with the default runtime:
1275-
+
1276-
[source,cypher]
1277-
----
1278-
SHOW INDEXES YIELD *
1279-
----
1280-
======
1281-
[.include-with-neo4j-code]
1282-
======
1283-
1284-
Query::
1285-
+
1286-
[source,cypher]
1287-
----
1288-
CYPHER runtime=pipelined SHOW INDEXES YIELD *
1289-
----
1290-
1291-
Description of the returned code::
1292-
Selected runtime is unsupported for this query, please use a different runtime instead or fallback to default.
1293-
(Pipelined does not yet support the plans including `ShowIndexes`, use another runtime.)
1294-
1295-
Suggestions for improvement::
1296-
Use a different runtime or remove the runtime option to run the query with the default runtime:
1297-
+
1298-
[source,cypher]
1299-
----
1300-
SHOW INDEXES YIELD *
1301-
----
1302-
1303-
======
1304-
=====
1305-
1306-
[role=label--deprecated-5.14]
1307-
[#_neo_clientnotification_statement_runtimeexperimental]
1308-
=== RuntimeExperimental
1309-
1310-
[NOTE]
1311-
====
1312-
The usage of this notification has been removed since Neo4j 5.14.
1313-
====
1314-
1315-
.Notification details
1316-
[cols="<1s,<4"]
1317-
|===
1318-
|Neo4j code
1319-
m|Neo.ClientNotification.Statement.RuntimeExperimental
1320-
|Title
1321-
a|This feature is experimental and should not be used in production systems.
1322-
|Description
1323-
|You are using an experimental feature (`%s`)
1324-
|Category
1325-
m|UNSUPPORTED
1326-
|SeverityLevel
1327-
m|WARNING
1328-
|===
1329-
1330-
.Use of the parallel runtime
1331-
====
1332-
Query::
1333-
+
1334-
[source,cypher]
1335-
----
1336-
CYPHER runtime=parallel MATCH (n) RETURN (n)
1337-
----
1338-
1339-
Description of the returned code::
1340-
You are using an experimental feature (The parallel runtime is experimental and might suffer from instability and potentially correctness issues.)
1341-
1342-
Suggestions for improvement::
1343-
The parallel runtime should not be used in production. Choose another runtime or remove the option to use the default runtime:
1344-
+
1345-
[source,cypher]
1346-
----
1347-
MATCH (n) RETURN (n)
1348-
----
1349-
====
1350-
13511221
[#_deprecated_notifications]
13521222
== `DEPRECATION` notifications
13531223

0 commit comments

Comments
 (0)