memgraph/tests/macro_benchmark/groups/match/vertex_on_index.run.py
Mislav Bradac 7e5dddecae Move harness stuff to parent directory
Reviewers: buda

Reviewed By: buda

Subscribers: pullbot

Differential Revision: https://phabricator.memgraph.io/D799
2017-09-15 14:05:26 +02:00

6 lines
194 B
Python

from setup import LABEL_INDEX, ID, VERTEX_COUNT, rint
print("UNWIND range(0, 10000) AS i "
"MATCH (n:%s {%s: %d}) RETURN n SKIP 1000000" % (
LABEL_INDEX, ID, rint(VERTEX_COUNT)))