Skip to content

Commit d519c4d

Browse files
committed
Union ordering no longer deprecated
1 parent 64080f7 commit d519c4d

File tree

1 file changed

+0
-64
lines changed

1 file changed

+0
-64
lines changed

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

Lines changed: 0 additions & 64 deletions
Original file line numberDiff line numberDiff line change
@@ -1373,8 +1373,6 @@ a|
13731373
To continue using it, escape the identifier by adding backticks around the identifier `%s`.
13741374
- The character with the Unicode representation `%s` is deprecated for unescaped identifiers and will not be supported in the future.
13751375
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.
13781376
- Databases and aliases with unescaped `.` are deprecated unless to indicate that they belong to a composite database.
13791377
Names containing `.` should be escaped. (`%s`)
13801378
|Category
@@ -1440,68 +1438,6 @@ CREATE DATABASE `foo.bar`
14401438
======
14411439
=====
14421440

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-
15051441
.Using the Unicode \u0085 in an unescaped identifier
15061442
[.tabbed-example]
15071443
=====

0 commit comments

Comments
 (0)