This project is mirrored from https://gitee.com/mirrors/neo4jsource.git.
Pull mirroring failed .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer.
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer.
- 21 Feb, 2014 6 commits
-
-
Neo4j BuildServer authored
-
Jakub Wieczorek authored
-
Jakub Wieczorek authored
-
Jakub Wieczorek authored
-
Rickard Öberg authored
Nicer error messages on transaction failure, especially when trying to delete a node that has relationships
-
Andres Taylor authored
Fix better error message when failing opening resource in load csv
-
- 20 Feb, 2014 16 commits
-
-
Andres Taylor authored
-
davide authored
-
Andres Taylor authored
-
Andres Taylor authored
Conflicts: community/kernel/src/main/java/org/neo4j/kernel/InternalAbstractGraphDatabase.java
-
Andres Taylor authored
Move CSV handling to QueryContext
-
Andres Taylor authored
Conflicts: community/cypher/cypher-commons/src/main/scala/org/neo4j/cypher/CypherException.scala community/cypher/cypher-compiler-2.1/src/main/scala/org/neo4j/cypher/internal/compiler/v2_1/ClosingIterator.scala community/cypher/cypher-compiler-2.1/src/main/scala/org/neo4j/cypher/internal/compiler/v2_1/ast/Query.scala community/cypher/cypher-compiler-2.1/src/main/scala/org/neo4j/cypher/internal/compiler/v2_1/ast/convert/StatementConverters.scala community/cypher/cypher-compiler-2.1/src/main/scala/org/neo4j/cypher/internal/compiler/v2_1/parser/CypherParser.scala community/cypher/cypher-compiler-2.1/src/main/scala/org/neo4j/cypher/internal/compiler/v2_1/parser/Query.scala community/cypher/cypher-compiler-2.1/src/main/scala/org/neo4j/cypher/internal/compiler/v2_1/pipes/LoadCSVPipe.scala community/cypher/cypher-compiler-2.1/src/main/scala/org/neo4j/cypher/internal/compiler/v2_1/pipes/QueryState.scala community/cypher/cypher-compiler-2.1/src/main/scala/org/neo4j/cypher/internal/compiler/v2_1/spi/DelegatingQueryContext.scala community/cypher/cypher-compiler-2.1/src/main/scala/org/neo4j/cypher/internal/compiler/v2_1/spi/QueryContext.scala community/cypher/cypher-compiler-2.1/src/test/scala/org/neo4j/cypher/internal/compiler/v2_1/ClosingIteratorTest.scala community/cypher/cypher-compiler-2.1/src/test/scala/org/neo4j/cypher/internal/compiler/v2_1/pipes/LoadCSVPipeTest.scala community/cypher/cypher/src/main/scala/org/neo4j/cypher/internal/CypherCompiler.scala community/cypher/cypher/src/main/scala/org/neo4j/cypher/internal/spi/v2_0/TransactionBoundQueryContext.scala community/cypher/cypher/src/test/scala/org/neo4j/cypher/ExecutionEngineTest.scala community/cypher/cypher/src/test/scala/org/neo4j/cypher/internal/compiler/v2_1/ExecutionPlanBuilderTest.scala community/cypher/cypher/src/test/scala/org/neo4j/cypher/internal/compiler/v2_1/LabelActionTest.scala community/cypher/cypher/src/test/scala/org/neo4j/cypher/internal/compiler/v2_1/QueryStateHelper.scala community/cypher/cypher/src/test/scala/org/neo4j/cypher/internal/spi/v2_0/TransactionBoundExecutionContextTest.scala community/cypher/cypher/src/test/scala/org/neo4j/cypher/internal/spi/v2_0/TransactionBoundQueryContextTest.scala community/cypher/cypher/src/test/scala/org/neo4j/cypher/internal/spi/v2_1/TransactionBoundExecutionContextTest.scala community/kernel/src/main/java/org/neo4j/kernel/impl/nioneo/xa/NeoStoreTransaction.java community/kernel/src/main/java/org/neo4j/kernel/impl/transaction/xaframework/XaResourceManager.java community/server/src/test/java/org/neo4j/server/rest/transactional/CypherExceptionMappingTest.java
-
Chris Vest authored
Widens recoverable failure scenarios for schema indexes
-
Chris Vest authored
Remove the CleanupService
-
Andres Taylor authored
Fixes for PERIODIC COMMIT
-
Stefan Plantikow authored
-
Stefan Plantikow authored
-
Jakub Wieczorek authored
-
Jakub Wieczorek authored
-
davide authored
We want to consolidate access to the outside world behind this facade. That makes it possible to handle freeing of resources in QueryContext's, instead of having multiple places remember to clean up state after a query is finished.
-
Chris Vest authored
This is safe to do since we in 2.0 also require transactions for reads. That way, we never litter outside of transactions, and so any trash that might have escaped, is now being cleaned up along with the transaction state.
-
Chris Leishman authored
-
- 19 Feb, 2014 18 commits
-
-
Stefan Plantikow authored
-
Andres Taylor authored
2.1 PERIODIC COMMIT docs
-
Andres Taylor authored
release already released Cypher compilers, take two
-
Andres Taylor authored
-
Andres Taylor authored
-
Stefan Plantikow authored
-
Stefan Plantikow authored
-
Stefan Plantikow authored
2.1 cypher documentation test cleanup
-
Chris Gioran authored
Failures while populating indexes include crashes which may leave the index files themselves inconsistent. That may lead to the indexes being unable to open and recovery on them impossible to proceed. However, such a scenario can be recovered by deleting and repopulating the index, as it's done for failures so far. This commit adds two more exceptions to the list of recovereable errors. FileNotFoundException and EOFException thrown when opening a lucene index, which may come up if the index is not closed properly, as in the case of a VM crash.
-
Andres Taylor authored
Introduce per-version QueryCache
-
Chris Gioran authored
-
Chris Gioran authored
Merges 2.0-maint into master
-
Chris Gioran authored
Merge branch 1.9-maint into 2.0-maint
-
Davide Grohmann authored
Break down ExecutionEngineTest into smaller pieces
-
davide authored
-
davide authored
-
davide authored
Queries don't have to run in transactions that are later rolled back
-
Stefan Plantikow authored
o This avoids allocating pairs of (version, query) o This avoids allocating lambdas in prepare for compiler-2.1
-