|
1373 | 1373 | To continue using it, escape the identifier by adding backticks around the identifier `%s`. |
1374 | 1374 | - The character with the Unicode representation `%s` is deprecated for unescaped identifiers and will not be supported in the future. |
1375 | 1375 | To continue using it, escape the identifier by adding backticks around the identifier `%s`. |
1376 | | -- All subqueries in a UNION [ALL] should have the same ordering for the return columns. |
1377 | | -Using differently ordered return items in a UNION [ALL] clause is deprecated and will be removed in a future version. |
1378 | 1376 | - Databases and aliases with unescaped `.` are deprecated unless to indicate that they belong to a composite database. |
1379 | 1377 | Names containing `.` should be escaped. (`%s`) |
1380 | 1378 | |Category |
@@ -1440,68 +1438,6 @@ CREATE DATABASE `foo.bar` |
1440 | 1438 | ====== |
1441 | 1439 | ===== |
1442 | 1440 |
|
1443 | | -.Using differently ordered return items in a `UNION` clause |
1444 | | -[.tabbed-example] |
1445 | | -===== |
1446 | | -[.include-with-neo4j-code] |
1447 | | -====== |
1448 | | -Query:: |
1449 | | -+ |
1450 | | -[source,cypher] |
1451 | | ----- |
1452 | | -RETURN 'val' as one, 'val' as two |
1453 | | -UNION |
1454 | | -RETURN 'val' as two, 'val' as one |
1455 | | ----- |
1456 | | - |
1457 | | -Description of the returned code:: |
1458 | | -All subqueries in a UNION [ALL] should have the same ordering for the return columns. |
1459 | | -Using differently ordered return items in a UNION [ALL] clause is deprecated and will be removed in a future version. |
1460 | | - |
1461 | | -Suggestions for improvement:: |
1462 | | -Use the same order for the return columns in all subqueries combined by a `UNION` clause. |
1463 | | - |
1464 | | -+ |
1465 | | -[source,cypher] |
1466 | | ----- |
1467 | | -RETURN 'val' as one, 'val' as two |
1468 | | -UNION |
1469 | | -RETURN 'val' as one, 'val' as two |
1470 | | ----- |
1471 | | - |
1472 | | -====== |
1473 | | -[.include-with-GQLSTATUS-code] |
1474 | | -====== |
1475 | | -Query:: |
1476 | | -+ |
1477 | | -[source,cypher] |
1478 | | ----- |
1479 | | -RETURN 'val' as one, 'val' as two |
1480 | | -UNION |
1481 | | -RETURN 'val' as two, 'val' as one |
1482 | | ----- |
1483 | | - |
1484 | | -Returned GQLSTATUS code:: |
1485 | | -01N00 |
1486 | | - |
1487 | | -Returned status description:: |
1488 | | -warn: feature deprecated. |
1489 | | -All subqueries in a UNION [ALL] should have the same ordering for the return columns. |
1490 | | -Using differently ordered return items in a UNION [ALL] clause is deprecated and will be removed in a future version. |
1491 | | - |
1492 | | -Suggestions for improvement:: |
1493 | | -Use the same order for the return columns in all subqueries combined by a `UNION` clause. |
1494 | | - |
1495 | | -+ |
1496 | | -[source,cypher] |
1497 | | ----- |
1498 | | -RETURN 'val' as one, 'val' as two |
1499 | | -UNION |
1500 | | -RETURN 'val' as one, 'val' as two |
1501 | | ----- |
1502 | | -====== |
1503 | | -===== |
1504 | | - |
1505 | 1441 | .Using the Unicode \u0085 in an unescaped identifier |
1506 | 1442 | [.tabbed-example] |
1507 | 1443 | ===== |
|
0 commit comments