Skip to content

Commit

Permalink
Fix test.
Browse files Browse the repository at this point in the history
  • Loading branch information
CPWstatic committed Dec 25, 2021
1 parent 468b7f0 commit ebec681
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
16 changes: 8 additions & 8 deletions tests/tck/features/match/MultiQueryParts.feature
Original file line number Diff line number Diff line change
Expand Up @@ -192,15 +192,15 @@ Feature: Multi Query Parts
| "Boris Diaw" | "Suns" |
| "Boris Diaw" | "Tim Duncan" |
When executing query:
"""
MATCH (m:player{name:"Tim Duncan"})-[:like]-(n)--()
WITH m,count(*) AS lcount
MATCH (m)--(n)
RETURN count(*) AS scount, lcount
"""
"""
MATCH (m:player{name:"Tim Duncan"})-[:like]-(n)--()
WITH m,count(*) AS lcount
MATCH (m)--(n)
RETURN count(*) AS scount, lcount
"""
Then the result should be, in order:
| scount | lcount |
| 19 | 110 |
| scount | lcount |
| 19 | 110 |
# Below scenario is not suppoted for the execution plan has a scan.
When executing query:
"""
Expand Down
4 changes: 2 additions & 2 deletions tests/tck/features/yield/parameter.feature
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ Feature: Parameter
RETURN *
"""
Then the result should be, in any order:
| sval | fval | ival | bval |
| "Tim Duncanef" | 4.1 | 2 | false |
| ival | bval | sval | fval |
| 2 | false | "Tim Duncanef" | 4.1 |
When executing query:
"""
MATCH (v:player)
Expand Down

0 comments on commit ebec681

Please sign in to comment.