Skip to content

Commit

Permalink
Upgrade Cypher compiler dependency to 2.3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
eebus committed Dec 7, 2016
1 parent 49ff159 commit fd75182
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion community/cypher/cypher/pom.xml
Expand Up @@ -185,7 +185,7 @@
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-cypher-compiler-2.3</artifactId>
<version>2.3.7</version>
<version>2.3.8</version>
<exclusions>
<exclusion>
<groupId>org.neo4j</groupId>
Expand Down
Expand Up @@ -23,6 +23,7 @@ import org.neo4j.cypher.MissingIndexException
import org.neo4j.cypher.internal.compiler.v2_3.pipes.EntityProducer
import org.neo4j.cypher.internal.compiler.v2_3.pipes.matching.ExpanderStep
import org.neo4j.cypher.internal.compiler.v2_3.spi._

import org.neo4j.cypher.internal.spi.TransactionalContextWrapper
import org.neo4j.graphdb.Node
import org.neo4j.kernel.api.constraints.UniquenessConstraint
Expand Down Expand Up @@ -112,7 +113,7 @@ class TransactionBoundPlanContext(tc: TransactionalContextWrapper)
new BidirectionalTraversalMatcher(steps, start, end)

val statistics: GraphStatistics =
InstrumentedGraphStatistics(TransactionBoundGraphStatistics(tc.readOperations), MutableGraphStatisticsSnapshot())
InstrumentedGraphStatistics(TransactionBoundGraphStatistics(tc.readOperations), new MutableGraphStatisticsSnapshot())

val txIdProvider: () => Long = tc.graph
.getDependencyResolver
Expand Down

0 comments on commit fd75182

Please sign in to comment.