memgraph/tests/macro_benchmark/groups/match/pattern_where.run.py
Mislav Bradac b98c12ea89 Clean up of benchmark requirements file
Reviewers: mferencevic

Reviewed By: mferencevic

Differential Revision: https://phabricator.memgraph.io/D600
2017-07-29 18:26:18 +02:00

4 lines
164 B
Python

from setup import ID, rint, VERTEX_COUNT
print("MATCH (n)-[r]->(m) WHERE n.%s = %d AND m.%s = %d RETURN *" % (
ID, rint(VERTEX_COUNT), ID, rint(VERTEX_COUNT)))