Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix bug of missing yield statement in find shortest path #64

Merged
merged 8 commits into from
Apr 20, 2022
Merged
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]