diff --git a/community/cypher/cypher/pom.xml b/community/cypher/cypher/pom.xml index c9324cf26e5da..1869543e50b77 100644 --- a/community/cypher/cypher/pom.xml +++ b/community/cypher/cypher/pom.xml @@ -185,7 +185,7 @@ org.neo4j neo4j-cypher-compiler-2.3 - 2.3.7 + 2.3.8 org.neo4j diff --git a/community/cypher/cypher/src/main/scala/org/neo4j/cypher/internal/spi/v2_3/TransactionBoundPlanContext.scala b/community/cypher/cypher/src/main/scala/org/neo4j/cypher/internal/spi/v2_3/TransactionBoundPlanContext.scala index 4080b5bc83a75..c58f67fde2d15 100644 --- a/community/cypher/cypher/src/main/scala/org/neo4j/cypher/internal/spi/v2_3/TransactionBoundPlanContext.scala +++ b/community/cypher/cypher/src/main/scala/org/neo4j/cypher/internal/spi/v2_3/TransactionBoundPlanContext.scala @@ -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 @@ -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