Skip to content

Commit

Permalink
Fix join benchmark
Browse files Browse the repository at this point in the history
  • Loading branch information
andyfengHKU committed Feb 8, 2023
1 parent c35825b commit 9ea0b76
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions benchmark/queries/ldbc-sf100/join/q29.benchmark
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
-NAME q29
-COMPARE_RESULT 1
-QUERY MATCH (a:Person)-[:knows]->(b:Person) RETURN MIN(a.birthday), MIN(b.birthday)
-ENCODED_JOIN HJ(b){E(b)S(a)}{S(b)}
-ENCODED_JOIN HJ(b._id){E(b)S(a)}{S(b)}
---- 1
1980-02-01|1980-02-01
1980-02-01|1980-02-01
4 changes: 2 additions & 2 deletions benchmark/queries/ldbc-sf100/join/q30.benchmark
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
-NAME q30
-COMPARE_RESULT 1
-QUERY MATCH (a:Person)-[:knows]->(b:Person)-[:knows]->(c:Person) RETURN MIN(a.birthday), MIN(b.birthday), MIN(c.birthday)
-ENCODED_JOIN HJ(c){HJ(a){E(c)E(a)S(b)}{S(a)}}{S(c)}
-ENCODED_JOIN HJ(c._id){HJ(a._id){E(c)E(a)S(b)}{S(a)}}{S(c)}
---- 1
1980-02-01|1980-02-01|1980-02-01
1980-02-01|1980-02-01|1980-02-01
3 changes: 1 addition & 2 deletions benchmark/queries/ldbc-sf100/join/q31.benchmark
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
-NAME q31
-COMPARE_RESULT 1
-QUERY MATCH (a:Person)-[:knows]->(b:Person) WHERE a.ID=933 RETURN MIN(a.birthday), MIN(b.birthday)
-ENCODED_JOIN HJ(b){E(b)S(a)}{S(b)}
---- 1
1989-12-03|1980-03-31
1989-12-03|1980-03-31

0 comments on commit 9ea0b76

Please sign in to comment.