@@ -1218,136 +1218,6 @@ The query contains an aggregation function that skips null values.
1218
1218
======
1219
1219
=====
1220
1220
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
-
1351
1221
[#_deprecated_notifications]
1352
1222
== `DEPRECATION` notifications
1353
1223
0 commit comments