Skip to content

Commit

Permalink
fix test error
Browse files Browse the repository at this point in the history
  • Loading branch information
nevermore3 committed Dec 9, 2022
1 parent 3f2c635 commit b695c28
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/tck/features/optimizer/PrunePropertiesRule.feature
Original file line number Diff line number Diff line change
Expand Up @@ -761,12 +761,12 @@ Feature: Prune Properties rule
order by degree, name, age limit 5;
"""
Then the result should be, in order, with relax comparison:
| properties(src_v).sex | degree | name | age | e[1].start_year | dst_v.player.age |
| "男" | UNKNOWN_PROP | "Aron Baynes" | 41 | 2022 | 32 |
| "男" | UNKNOWN_PROP | "Aron Baynes" | 41 | 2022 | 32 |
| "男" | UNKNOWN_PROP | "Aron Baynes" | 41 | 2022 | 32 |
| "男" | UNKNOWN_PROP | "Aron Baynes" | 41 | 2022 | 32 |
| "男" | UNKNOWN_PROP | "Aron Baynes" | 41 | 2022 | 32 |
| properties(src_v).sex | degree | name | age | e[1].start_year | dst_v.player.age |
| "男" | __NULL__ | "Aron Baynes" | 41 | 2022 | 32 |
| "男" | __NULL__ | "Aron Baynes" | 41 | 2022 | 32 |
| "男" | __NULL__ | "Aron Baynes" | 41 | 2022 | 32 |
| "男" | __NULL__ | "Aron Baynes" | 41 | 2022 | 32 |
| "男" | __NULL__ | "Aron Baynes" | 41 | 2022 | 32 |
When executing query:
"""
match (v1)-->(v2)-->(v3) where id(v1)=="Manu Ginobili"
Expand Down

0 comments on commit b695c28

Please sign in to comment.