memgraph/tests/macro_benchmark/groups/create_parallel/edge.setup.py
Dominik Gleich 1d5245cb13 Add edge creation and bfs parallel tests
Reviewers: buda, mislav.bradac

Reviewed By: mislav.bradac

Subscribers: pullbot

Differential Revision: https://phabricator.memgraph.io/D953
2017-11-10 16:03:06 +01:00

6 lines
132 B
Python

import common
for i in range(common.VERTEX_COUNT):
print("CREATE (n: Node {id: %d});" % i)
print("CREATE INDEX ON :Node(id);")