Skip to content

Commit

Permalink
neo4jGH-952: Fix issue in test query.
Browse files Browse the repository at this point in the history
  • Loading branch information
nioertel committed Jul 26, 2023
1 parent 5d00c7f commit 0543565
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ private long bringRelAndNodeIdsToSameLevel() {
for (long i = 0; i < numNodesToCreate; ++i) {
session.queryForObject(Long.class, ""//
+ "MERGE (n1:Dummy{uuid:'A',i:$i}) "//
+ "RETURN id(n2)", Collections.singletonMap("i", i + 2L));
+ "RETURN id(n1)", Collections.singletonMap("i", i + 2L));
}
return currentLargestRelId + 1L;
}
Expand Down

0 comments on commit 0543565

Please sign in to comment.