Skip to content

Commit

Permalink
fix typo in scenario 2 neo4j benchmark
Browse files Browse the repository at this point in the history
  • Loading branch information
danthe1st committed Sep 26, 2024
1 parent fffd942 commit b1b56fe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ public void scenario2Neo4J(AirbnbState state, Blackhole bh) {
Result result = tx.execute("""
MATCH (h: Host) -[: HOSTS]-> (l: Listing) -[: IN_NEIGHBORHOOD]-> (n: Neighborhood)
WHERE h.host_id = $hostId AND n.neighborhood_id = $neighborhoodId
RETURN r
RETURN l
""", Map.of("hostId", id.subjectId(), "neighborhoodId", id.neighborhoodId()));

result.forEachRemaining(bh::consume);
Expand Down

0 comments on commit b1b56fe

Please sign in to comment.