memgraph/tests/benchmark_infra/groups/match/pattern_where.run.py
Mislav Bradac d14accad07 Migrate harness to memgraph
Reviewers: buda

Reviewed By: buda

Subscribers: pullbot

Differential Revision: https://phabricator.memgraph.io/D532
2017-07-10 19:07:32 +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)))