Skip to content

Commit 0870dae

Browse files
committed
removed additions entry, wrapped type results in quotes in the query result table of an example query
1 parent 1a20741 commit 0870dae

File tree

2 files changed

+14
-29
lines changed

2 files changed

+14
-29
lines changed

modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -32,21 +32,6 @@ For more information, see xref:queries/select-version.adoc[].
3232
| Feature
3333
| Details
3434

35-
a|
36-
label:functionality[]
37-
label:updated[]
38-
[source, cypher]
39-
----
40-
RETURN 1 AS a
41-
42-
NEXT
43-
44-
RETURN 1 AS b
45-
----
46-
47-
| The behavior of `NEXT` has been updated - where previously it only passed return values from one segment to the next, now it passes the whole table of intermediate results.
48-
For more information, see xref:queries/composed-queries/sequential-queries.adoc[].
49-
5035
a|
5136
label:functionality[]
5237
label:updated[]

modules/ROOT/pages/queries/composed-queries/sequential-queries.adoc

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -213,20 +213,20 @@ RETURN * ORDER BY name, type
213213
|===
214214
| name | purchases | type
215215

216-
| "Amir" | [900.0, 4.5] | discounted price
217-
| "Amir" | [1000, 5] | real price
218-
| "Hannah" | [212.5, 8.5] | discounted price
219-
| "Hannah" | [250, 10] | real price
220-
| "Keisha" | [200.0] | discounted price
221-
| "Keisha" | [250] | real price
222-
| "Leila" | [900.0] | discounted price
223-
| "Leila" | [1000] | real price
224-
| "Mateo" | [950.0, 4.75, 9.5] | discounted price
225-
| "Mateo" | [1000, 5, 10] | real price
226-
| "Niko" | [375.0, 187.5, 7.5] | discounted price
227-
| "Niko" | [500, 250, 10] | real price
228-
| "Yusuf" | [900.0, 4.5] | discounted price
229-
| "Yusuf" | [1000, 5] | real price
216+
| "Amir" | [900.0, 4.5] | "discounted price"
217+
| "Amir" | [1000, 5] | "real price"
218+
| "Hannah" | [212.5, 8.5] | "discounted price"
219+
| "Hannah" | [250, 10] | "real price"
220+
| "Keisha" | [200.0] | "discounted price"
221+
| "Keisha" | [250] | "real price"
222+
| "Leila" | [900.0] | "discounted price"
223+
| "Leila" | [1000] | "real price"
224+
| "Mateo" | [950.0, 4.75, 9.5] | "discounted price"
225+
| "Mateo" | [1000, 5, 10] | "real price"
226+
| "Niko" | [375.0, 187.5, 7.5] | "discounted price"
227+
| "Niko" | [500, 250, 10] | "real price"
228+
| "Yusuf" | [900.0, 4.5] | "discounted price"
229+
| "Yusuf" | [1000, 5] | "real price"
230230

231231
3+d|Rows: 14
232232
|===

0 commit comments

Comments
 (0)