memgraph/tests/macro_benchmark/harness/groups/dense_expand/setup.cypher
florijan cd0d8eb543 Harness - dense expand group added, more tests on bench
Summary: It turns out trivial if I use unwind for vertex creation, MATCH for edge creation and UNWIND for test duration. It took hours to converge to this :(

Reviewers: mislav.bradac, buda

Reviewed By: mislav.bradac

Subscribers: pullbot

Differential Revision: https://phabricator.memgraph.io/D747
2017-09-06 14:58:50 +02:00

3 lines
77 B
Plaintext

UNWIND range(0, 499) AS i CREATE ();
MATCH (a), (b) CREATE (a)-[:Type]->(b);