Skip to content
This repository has been archived by the owner on Dec 1, 2022. It is now read-only.

Commit

Permalink
fix tck
Browse files Browse the repository at this point in the history
  • Loading branch information
czpmango committed Apr 7, 2021
1 parent de5c129 commit 8766636
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/tck/features/aggregate/Agg.feature
Original file line number Diff line number Diff line change
Expand Up @@ -608,7 +608,7 @@ Feature: Basic Aggregate and GroupBy
"""
GO FROM "Tim Duncan" OVER like YIELD count(*)
"""
Then a SemanticError should be raised at runtime: `COUNT(*)', not support aggregate function in go sentence.
Then a SemanticError should be raised at runtime: `count(*)', not support aggregate function in go sentence.
When executing query:
"""
GO FROM "Tim Duncan" OVER like where COUNT(*) > 2
Expand Down
2 changes: 1 addition & 1 deletion tests/tck/features/bugfix/MatchUsedInPipe.feature
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Feature: Test match used in pipe
MATCH (n:player{name:"Tim Duncan"})-[]-(m) RETURN n,m | GROUP BY $-.n, $-.m YIELD $-.n, $-.m, count(*);
"""
Then the result should be, in any order, with relax comparison:
| $-.n | $-.m | COUNT(*) |
| $-.n | $-.m | count(*) |
| ("Tim Duncan") | ("Spurs") | 1 |
| ("Tim Duncan") | ("Shaquile O'Neal") | 1 |
| ("Tim Duncan") | ("Tiago Splitter") | 1 |
Expand Down

0 comments on commit 8766636

Please sign in to comment.