Skip to content

Commit

Permalink
Add missing AS to query
Browse files Browse the repository at this point in the history
  • Loading branch information
sherfert authored and arnefischereit committed Oct 11, 2023
1 parent 3af0757 commit a53b523
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit a53b523

Please sign in to comment.