Skip to content
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

TCK fixes #563

Merged
merged 2 commits into from
Oct 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tck/features/clauses/with-orderBy/WithOrderBy4.feature
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ Feature: WithOrderBy4 - Order by in combination with projection and aliasing
When executing query:
"""
MATCH (me: Person)--(you: Person)
WITH me.age + you.age, count(*) AS cnt
WITH me.age + you.age AS ages, count(*) AS cnt
ORDER BY me.age + you.age + count(*)
RETURN *
"""
Expand Down
2 changes: 1 addition & 1 deletion tck/features/expressions/graph/Graph6.feature
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ Feature: Graph6 - Static property access
WITH <exp> AS nonGraphElement
RETURN nonGraphElement.num
"""
Then a TypeError should be raised at compile time: InvalidArgumentType
Then a SyntaxError should be raised at compile time: InvalidArgumentType

Examples:
| exp |
Expand Down
Loading