Skip to content

Commit

Permalink
Fix bug of missing yield statement in find shortest path (#64)
Browse files Browse the repository at this point in the history
* master

* yield something find path statment

* fix

* lint

* lint
  • Loading branch information
wenhaocs authored Apr 20, 2022
1 parent 2b8e11d commit 6b749a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nebula_bench/scenarios/find_path.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@

class FindShortestPath(BaseScenario):
abstract = False
nGQL = "FIND SHORTEST PATH FROM {} TO {} OVER *"
nGQL = "FIND SHORTEST PATH FROM {} TO {} OVER * YIELD path as p"
csv_path = "social_network/dynamic/person_knows_person.csv"
csv_index = [0, 1]

0 comments on commit 6b749a1

Please sign in to comment.