Skip to content

Commit

Permalink
Fix tck (vesoft-inc#2653)
Browse files Browse the repository at this point in the history
small fix fmt

small fix

Co-authored-by: Sophie <84560950+Sophie-Xie@users.noreply.github.com>
  • Loading branch information
czpmango and Sophie-Xie committed Apr 19, 2023
1 parent fb784c9 commit 045f7e1
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions tests/tck/features/expression/RelationalExpr.feature
Expand Up @@ -231,8 +231,6 @@ Feature: RelationalExpression
| 2 | AppendVertices | 6 | |
| 6 | IndexScan | 0 | {"indexCtx": {"columnHints":{"scanType":"RANGE"}}} |
| 0 | Start | | |

Scenario: Transform Relational expr in MATCH clause
When profiling query:
"""
MATCH (v:player{name: "Tim Duncan"})-[e]->(m) WHERE m.player.name =~ 'Tony.*' RETURN id(m) AS id
Expand All @@ -242,10 +240,9 @@ Feature: RelationalExpression
| "Tony Parker" |
| "Tony Parker" |
And the execution plan should be:
| id | name | dependencies | operator info |
| 13 | Project | 12 | |
| 12 | Filter | 12 | |
| 12 | AppendVertices | 11 | |
| 11 | Traverse | 8 | |
| 8 | IndexScan | 0 | |
| 0 | Start | | |
| id | name | dependencies | operator info |
| 13 | Project | 12 | |
| 12 | AppendVertices | 11 | {"filter": "(player.name=~\"Tony.*\")"} |
| 11 | Traverse | 8 | |
| 8 | IndexScan | 0 | |
| 0 | Start | | |

0 comments on commit 045f7e1

Please sign in to comment.