Skip to content

Commit

Permalink
add a tck
Browse files Browse the repository at this point in the history
  • Loading branch information
xtcyclist committed Dec 8, 2022
1 parent c02065c commit 074addd
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions tests/tck/features/match/With.feature
Original file line number Diff line number Diff line change
Expand Up @@ -402,3 +402,14 @@ Feature: With clause
Then the result should be, in order:
| count(v0) |
| 51 |
When executing query:
"""
match (v:player)
with v AS p
match (p)
with p AS v
match (v)
with *
return count (p)
"""
Then a SemanticError should be raised at runtime: Alias used but not defined: `p'

0 comments on commit 074addd

Please sign in to comment.