Skip to content

Commit

Permalink
update tck
Browse files Browse the repository at this point in the history
  • Loading branch information
caton-hpg committed Sep 1, 2022
1 parent 9b98ce0 commit 5284d8f
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 11 deletions.
31 changes: 31 additions & 0 deletions tests/tck/features/optimizer/PushFilterDownInnerJoinRule.feature
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Copyright (c) 2021 vesoft inc. All rights reserved.
#
# This source code is licensed under Apache 2.0 License.
Feature: Push Filter down InnerJoin rule

Background:
Given a graph with space named "nba"

Scenario: push filter down InnerJoin
When profiling query:
"""
LOOKUP ON player WHERE player.name == "Tony Parker"
YIELD id(vertex) as id |
GO FROM $-.id OVER like
WHERE (like.likeness - 1) >= 0
YIELD like._src AS src_id, like._dst AS dst_id, like.likeness AS likeness
"""
Then the result should be, in any order:
| src_id | dst_id | likeness |
| "Tony Parker" | "LaMarcus Aldridge" | 90 |
| "Tony Parker" | "Manu Ginobili" | 95 |
| "Tony Parker" | "Tim Duncan" | 95 |
And the execution plan should be:
| id | name | dependencies | operator info |
| 10 | Project | 15 | |
| 15 | InnerJoin | 17 | |
| 17 | Project | 18 | |
| 18 | GetNeighbors | 3 | |
| 3 | Project | 11 | |
| 11 | TagIndexPrefixScan | 0 | |
| 0 | Start | | |
22 changes: 11 additions & 11 deletions tests/tck/features/optimizer/PushFilterDownLeftJoinRule.feature
Original file line number Diff line number Diff line change
Expand Up @@ -22,23 +22,23 @@ Feature: Push Filter down LeftJoin rule
| "Tim Duncan" |
And the execution plan should be:
| id | name | dependencies | operator info |
| 24 | Project | 23 | |
| 23 | Filter | 22 | |
| 22 | InnerJoin | 21 | |
| 24 | Project | 34 | |
| 34 | InnerJoin | 33 | |
| 33 | Filter | 21 | |
| 21 | LeftJoin | 20 | |
| 20 | Project | 19 | |
| 19 | GetVertices | 18 | |
| 18 | Project | 31 | |
| 31 | GetNeighbors | 14 | |
| 14 | Project | 13 | |
| 13 | Filter | 12 | |
| 12 | InnerJoin | 11 | |
| 18 | Project | 30 | |
| 30 | GetNeighbors | 14 | |
| 14 | Project | 32 | |
| 32 | InnerJoin | 31 | |
| 31 | Filter | 11 | |
| 11 | LeftJoin | 10 | |
| 10 | Project | 9 | |
| 9 | GetVertices | 8 | |
| 8 | Project | 30 | |
| 30 | GetNeighbors | 27 | |
| 27 | Project | 25 | |
| 8 | Project | 29 | |
| 29 | GetNeighbors | 26 | |
| 26 | Project | 25 | |
| 25 | TagIndexPrefixScan | 0 | |
| 0 | Start | | |
When profiling query:
Expand Down

0 comments on commit 5284d8f

Please sign in to comment.