Skip to content

Commit b835b6b

Browse files
committed
Re-add example which was removed by mistake
1 parent c984b2f commit b835b6b

File tree

1 file changed

+85
-0
lines changed

1 file changed

+85
-0
lines changed

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

Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1218,6 +1218,91 @@ 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+
12211306
[#_deprecated_notifications]
12221307
== `DEPRECATION` notifications
12231308

0 commit comments

Comments
 (0)