memgraph/tools/tests/client/input/multiline_query_with_comments.txt
Matej Ferencevic 89b6262fa4 Fix multiline query concatenation character
Reviewers: buda

Reviewed By: buda

Subscribers: pullbot

Differential Revision: https://phabricator.memgraph.io/D2814
2020-09-04 13:18:55 +02:00

19 lines
283 B
Plaintext

CREATE (n:Constantine{quote:"In hoc signo vinces"})
RETURN n;
MATCH
(n)
// comment
RETURN
n;
CREATE (n:Erdody{quote:
"Regnum regno non praescribit leges"})
RETURN
n;
// comment
MATCH (n:Erdody) RETURN
n;
CREATE (n:Caesar{quote:"Alea iacta est"})
RETURN n;
MATCH (n:Caesar)
RETURN n;