7e5dddecae
Reviewers: buda Reviewed By: buda Subscribers: pullbot Differential Revision: https://phabricator.memgraph.io/D799
5 lines
199 B
Python
5 lines
199 B
Python
from setup import PROP_PREFIX, MAX_PROPS, rint, MAX_PROP_VALUE
|
|
|
|
print("UNWIND range(0, 50) AS i MATCH (n {%s%d: %d}) RETURN n SKIP 10000" % (
|
|
PROP_PREFIX, rint(MAX_PROPS), rint(MAX_PROP_VALUE)))
|