Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
czpmango committed Apr 6, 2023
1 parent 94a98cb commit c8db054
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 16 deletions.
7 changes: 3 additions & 4 deletions tests/tck/features/bugfix/LackFilterGetEdges.feature
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ Feature: Test lack filter of get edges transform
"""
Then the result should be, in any order:
| re |
| 0 |
| 0 |
| 0 |
| 0 |
| 0 |
| 0 |
And the execution plan should be:
| id | name | dependencies | operator info |
| 24 | Project | 20 | |
Expand All @@ -27,7 +27,6 @@ Feature: Test lack filter of get edges transform
| 23 | Traverse | 22 | { "edge filter": "((*.likeness>78) OR (uuid()>100))"} |
| 22 | ScanVertices | 3 | |
| 3 | Start | | |

When profiling query:
"""
match ()-[e]->()
Expand Down
23 changes: 11 additions & 12 deletions tests/tck/features/optimizer/PushFilterDownCrossJoinRule.feature
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# Copyright (c) 2023 vesoft inc. All rights reserved.
#
# This source code is licensed under Apache 2.0 License.

Feature: Push Filter down HashInnerJoin rule

Background:
Expand All @@ -19,16 +18,16 @@ Feature: Push Filter down HashInnerJoin rule
| count(e) |
| 8 |
And the execution plan should be:
| id | name | dependencies | operator info |
| 11 | Aggregate | 14 | |
| 14 | CrossJoin | 1,16 | |
| 1 | Project | 2 | |
| 2 | Start | | |
| 16 | Project | 15 | |
| id | name | dependencies | operator info |
| 11 | Aggregate | 14 | |
| 14 | CrossJoin | 1,16 | |
| 1 | Project | 2 | |
| 2 | Start | | |
| 16 | Project | 15 | |
| 15 | Filter | 18 | {"condition": "(id($-.v2) IN [\"Tim Duncan\",\"Tony Parker\"])"} |
| 18 | AppendVertices | 17 | |
| 18 | AppendVertices | 17 | |
| 17 | Filter | 17 | {"condition": "(id($-.v1) IN [\"Tim Duncan\",\"Tony Parker\"])"} |
| 17 | Traverse | 4 | |
| 4 | Dedup | 3 | |
| 3 | PassThrough | 5 | |
| 5 | Start | | |
| 17 | Traverse | 4 | |
| 4 | Dedup | 3 | |
| 3 | PassThrough | 5 | |
| 5 | Start | | |

0 comments on commit c8db054

Please sign in to comment.