Skip to content

Commit

Permalink
Update Cypher compiler dependencies to 3.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Lojjs authored and sherfert committed Jul 13, 2018
1 parent 49b295f commit 30ccde4
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
@@ -1,5 +1,3 @@
Feature "ProcedureCallAcceptance": Scenario "Standalone call to procedure should fail if implicit argument is missing"
Feature "ProcedureCallAcceptance": Scenario "Standalone call to unknown procedure should fail"
Feature "ProcedureCallAcceptance": Scenario "In-query call to unknown procedure should fail"
Feature "ReturnAcceptance": Scenario "RETURN true AND list"
Feature "ReturnAcceptance": Scenario "RETURN false OR list"
Expand Up @@ -990,9 +990,8 @@ class MatchAcceptanceTest extends ExecutionEngineFunSuite with QueryStatisticsTe
result.toList should be(List(Map("num" -> 27)))
}

//TODO support 3.4 when updating dep
test("should handle 3 inequalities without choking in planning") {
executeWith(Configs.Interpreted - Configs.Version3_4, "MATCH (a:A) WHERE a.prop < 1 AND a.prop <=1 AND a.prop >=1 RETURN a.prop") shouldBe empty
executeWith(Configs.Interpreted, "MATCH (a:A) WHERE a.prop < 1 AND a.prop <=1 AND a.prop >=1 RETURN a.prop") shouldBe empty
}

test("expand into non-dense") {
Expand Down
Expand Up @@ -300,7 +300,7 @@ class PatternComprehensionAcceptanceTest extends ExecutionEngineFunSuite with Cy
| WHERE NOT (user)-[:REVIEWED]->(:Movie)-[:BY]->(director) | id(b)] AS bonus
""".stripMargin

val result = executeWith(expectedToSucceedRestricted, query, Configs.Cost3_4) // should be fixed in next release of 3.3
val result = executeWith(expectedToSucceedRestricted, query)
result.toList should equal(List(
Map("bonus" -> List())
))
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -101,7 +101,7 @@
<currentYear>2018</currentYear>
<cypher.compatibility.23>2.3.12</cypher.compatibility.23>
<cypher.compatibility.31>3.1.9</cypher.compatibility.31>
<cypher.compatibility.34>3.4.1</cypher.compatibility.34>
<cypher.compatibility.34>3.4.4</cypher.compatibility.34>
<caffeine.version>2.6.2</caffeine.version>
</properties>

Expand Down

0 comments on commit 30ccde4

Please sign in to comment.