Skip to content

Commit

Permalink
updates 3.4 cypher compiler dependency 3.4.4 --> 3.4.5
Browse files Browse the repository at this point in the history
  • Loading branch information
alexaverbuch authored and sherfert committed Aug 10, 2018
1 parent be89c38 commit 8987321
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -152,12 +152,8 @@ object helpers {
case nfV3_4.DeprecatedRelTypeSeparatorNotification(position) => nfv3_5.DeprecatedRelTypeSeparatorNotification(as3_5(position))
case nfV3_4.DeprecatedPlannerNotification => compilerv3_5.DeprecatedPlannerNotification
case nfV3_4.ExperimentalFeatureNotification(msg) => compilerv3_5.ExperimentalFeatureNotification(msg)
case nfV3_4.SuboptimalIndexForWildcardQueryNotification(label, propertyKeys) => compilerv3_5.SuboptimalIndexForConstainsQueryNotification(label, propertyKeys)
// todo In 3.4.4 and earlier SuboptimalIndexForWildcardQueryNotification was the only one.
// This has been split in two, SuboptimalIndexForContainsQueryNotification and SuboptimalIndexForEndsWithQueryNotification.
// When 3.4.5 is released this mapping must be updated to reflect this, like this:
// case nfV3_4.SuboptimalIndexForContainsQueryNotification(label, propertyKeys) => compilerv3_5.SuboptimalIndexForConstainsQueryNotification(label, propertyKeys)
// case nfV3_4.SuboptimalIndexForEndsWithQueryNotification(label, propertyKeys) => compilerv3_5.SuboptimalIndexForEndsWithQueryNotification(label, propertyKeys)
case nfV3_4.SuboptimalIndexForContainsQueryNotification(label, propertyKeys) => compilerv3_5.SuboptimalIndexForConstainsQueryNotification(label, propertyKeys)
case nfV3_4.SuboptimalIndexForEndsWithQueryNotification(label, propertyKeys) => compilerv3_5.SuboptimalIndexForEndsWithQueryNotification(label, propertyKeys)
}

def as3_5(logicalPlanState: LogicalPlanStateV3_4) : LogicalPlanState = {
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
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.4</cypher.compatibility.34>
<cypher.compatibility.34>3.4.5</cypher.compatibility.34>
<caffeine.version>2.6.2</caffeine.version>
</properties>

Expand Down

0 comments on commit 8987321

Please sign in to comment.