-
Notifications
You must be signed in to change notification settings - Fork 64
Add missing Cypher 25 updates (GQL extended identifiers + subqeury expression change) #1313
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 4 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
69a4d10
add missing 25 changes
JPryce-Aklundh 98c1337
rephrase
JPryce-Aklundh a3957c3
Merge branch 'dev' into 25_missing_changes
JPryce-Aklundh 4987954
concision
JPryce-Aklundh 63be207
clarification
JPryce-Aklundh 6094c51
unicode party
JPryce-Aklundh 4f74c7f
dollar dollar bill
JPryce-Aklundh 2292a8a
Update modules/ROOT/pages/deprecations-additions-removals-compatibili…
JPryce-Aklundh File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -59,7 +59,7 @@ label:removed[] | |
| RETURN 1 as my\u0085identifier | ||
| ---- | ||
| a| | ||
| The Unicode character \`\u0085` has been removed for unescaped identifiers and is now considered a whitespace character. | ||
| The Unicode character `\u0085` has been removed for unescaped identifiers and is now considered a whitespace character. | ||
| To continue using it, escape the identifier by adding backticks around it. | ||
| This applies to all unescaped identifiers in Cypher, such as label expressions, properties, variable names, or parameters. | ||
| In the given example, the quoted identifier would be \`my�identifier`. | ||
|
|
@@ -72,23 +72,23 @@ label:removed[] | |
| RETURN 1 as my$Identifier | ||
| ---- | ||
| a| | ||
| The character with the Unicode representation \`\u0024` has been removed for unescaped identifiers. To continue using it, escape the identifier by adding backticks around the identifier. | ||
| The character with the Unicode representation `\u0024` has been removed for unescaped identifiers. To continue using it, escape the identifier by adding backticks (++``++) around the identifier. | ||
| This applies to all unescaped identifiers in Cypher, such as label expressions, properties, variable names, or parameters. In the given example, the quoted identifier would be \`my$identifier`. | ||
|
|
||
| The following Unicode Characters are removed in identifiers: | ||
| '\u0000', '\u0001', '\u0002', '\u0003', '\u0004', '\u0005', '\u0006', '\u0007', | ||
| '\u0008', '\u000E', '\u000F', '\u0010', '\u0011', '\u0012', '\u0013', '\u0014', | ||
| '\u0015', '\u0016', '\u0017', '\u0018', '\u0019', '\u001A', '\u001B', '\u007F', | ||
| '\u0080', '\u0081', '\u0082', '\u0083', '\u0084', '\u0086', '\u0087', '\u0088', | ||
| '\u0089', '\u008A', '\u008B', '\u008C', '\u008D', '\u008E', '\u008F', '\u0090', | ||
| '\u0091', '\u0092', '\u0093', '\u0094', '\u0095', '\u0096', '\u0097', '\u0098', | ||
| '\u0099', '\u009A', '\u009B', '\u009C', '\u009D', '\u009E', '\u009F', '\u0024', | ||
| '\u00A2', '\u00A3', '\u00A4', '\u00A5', '\u00AD', '\u0600', '\u0601', '\u0602', | ||
| '\u0603', '\u0604', '\u0605', '\u061C', '\u06DD', '\u070F', '\u08E2', '\u180E', | ||
| '\u200B', '\u200C', '\u200D', '\u200E', '\u200F', '\u202A', '\u202B', '\u202C', | ||
| '\u202D', '\u202E', '\u2060', '\u2061', '\u2062', '\u2063', '\u2064', '\u2066', | ||
| '\u2067', '\u2068', '\u2069', '\u206A', '\u206B', '\u206C', '\u206D', '\u206E', | ||
| '\u206F', '\u2E2F', '\uFEFF', '\uFFF9', '\uFFFA', '\uFFFB' | ||
| `\u0000`, `\u0001`, `\u0002`, `\u0003`, `\u0004`, `\u0005`, `\u0006`, `\u0007`, | ||
| `\u0008`, `\u000E`, `\u000F`, `\u0010`, `\u0011`, `\u0012`, `\u0013`, `\u0014`, | ||
| `\u0015`, `\u0016`, `\u0017`, `\u0018`, `\u0019`, `\u001A`, `\u001B`, `\u007F`, | ||
| `\u0080`, `\u0081`, `\u0082`, `\u0083`, `\u0084`, `\u0086`, `\u0087`, `\u0088`, | ||
| `\u0089`, `\u008A`, `\u008B`, `\u008C`, `\u008D`, `\u008E`, `\u008F`, `\u0090`, | ||
| `\u0091`, `\u0092`, `\u0093`, `\u0094`, `\u0095`, `\u0096`, `\u0097`, `\u0098`, | ||
| `\u0099`, `\u009A`, `\u009B`, `\u009C`, `\u009D`, `\u009E`, `\u009F`, `\u0024`, | ||
| `\u00A2`, `\u00A3`, `\u00A4`, `\u00A5`, `\u00AD`, `\u0600`, `\u0601`, `\u0602`, | ||
| `\u0603`, `\u0604`, `\u0605`, `\u061C`, `\u06DD`, `\u070F`, `\u08E2`, `\u180E`, | ||
| `\u200B`, `\u200C`, `\u200D`, `\u200E`, `\u200F`, `\u202A`, `\u202B`, `\u202C`, | ||
| `\u202D`, `\u202E`, `\u2060`, `\u2061`, `\u2062`, `\u2063`, `\u2064`, `\u2066`, | ||
| `\u2067`, `\u2068`, `\u2069`, `\u206A`, `\u206B`, `\u206C`, `\u206D`, `\u206E`, | ||
| `\u206F`, `\u2E2F`, `\uFEFF`, `\uFFF9`, `\uFFFA`, `\uFFFB` | ||
|
|
||
| a| | ||
| label:functionality[] | ||
|
|
@@ -157,6 +157,22 @@ dbms.upgradeStatus() | |
| a| These procedures have been removed from Cypher 25. | ||
| For more information, see the link:{neo4j-docs-base-uri}/operations-manual/current/procedures/[Operations Manual -> Procedures]. | ||
|
|
||
| a| | ||
| label:functionality[] | ||
| label:removed[] | ||
| [source, cypher, role="noheader"] | ||
| ---- | ||
| WITH 1 AS g | ||
| RETURN COLLECT { | ||
| UNWIND [1,2,3] AS x | ||
| WITH * WHERE x < 0 | ||
| WITH COUNT(*) AS agg | ||
| RETURN agg + g | ||
| } AS x | ||
| ---- | ||
|
|
||
| a| The xref:subqueries/collect.adoc[`COLLECT`], xref:subqueries/count.adoc[`COUNT`], and xref:subqueries/existential.adoc[`EXISTS`] subquery expressions no longer use imported variables as grouping variables in aggregations. | ||
|
||
|
|
||
| |=== | ||
|
|
||
| === Deprecated in Cypher 25 | ||
|
|
@@ -206,6 +222,16 @@ MATCH SHORTEST $param GROUPS (:A)-[:R]->{0,10}(:B) | |
|
|
||
| a| Parameters can now be used in xref:patterns/shortest-paths.adoc[`SHORTEST` and `ANY` path patterns]. | ||
|
|
||
| a| | ||
| label:functionality[] | ||
| label:updated[] | ||
| [source, cypher, role="noheader"] | ||
| ---- | ||
| RETURN $0hello | ||
| ---- | ||
|
|
||
| a| Parameters can start with extended identifier characters, in line with the xref:appendix/gql-conformance/index.adoc[GQL] standard. | ||
|
|
||
| a| | ||
| label:functionality[] | ||
| label:updated[] | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we fix the failed ? thingy here?