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.
- 17 Dec, 2014 10 commits
-
-
rickardoberg authored
-
rickardoberg authored
Ignore that we don't know about the previous transaction, because the case here is that we just restored a backup that doesn't have the log, and that's fine.
-
Mattias Persson authored
-
Davide Grohmann authored
Disallows same character used for multipl purposes in CSV input
-
Davide Grohmann authored
Rewrites filtering around join operators
-
Andres Taylor authored
-
Davide Grohmann authored
Conflicts: community/cypher/cypher-compiler-2.1/src/main/scala/org/neo4j/cypher/internal/compiler/v2_1/parser/CypherParser.scala community/cypher/cypher/src/test/scala/org/neo4j/cypher/ErrorMessagesTest.scala
-
Davide Grohmann authored
Conflicts: community/cypher/cypher-compiler-2.1/src/main/scala/org/neo4j/cypher/internal/compiler/v2_1/parser/CypherParser.scala
-
Andres Taylor authored
Add selections to plans from the exhaustive planner
-
Andres Taylor authored
More user friendly error message when trying to execute multiple statements
-
- 16 Dec, 2014 18 commits
-
-
Davide Grohmann authored
-
Chris Vest authored
Produce fewer exceptions
-
Mattias Persson authored
Also moves instantiation of executors into Step#start() called immediately before execution, to prevent keeping live threads in not-yet-executed stages.
-
Konstantin Lutovich authored
Merge 2.1 to 2.2
-
Andres Taylor authored
-
Mattias Persson authored
-
Pontus Melke authored
Show label names in plan descriptions
-
lutovich authored
Conflicts: community/kernel/src/main/java/org/neo4j/kernel/api/exceptions/schema/SchemaKernelException.java
-
Chris Vest authored
This fixes two hot exception producers that popped up during performance testing. This might slightly improve performance, but there's another benefit in that it removes two very noisy spots from the code, so we can get more interesting signal about rarer exceptions. The CollectUserAgentFilter is only a problem during performance testing, where the load generators don't provide a User-Agent header. Probably not an issue in production. The ResultIterator was implemented in a way that required non-local control flow through lambdas. This is implemented in Scala with trace-less exceptions. Changing the logic around to no longer do an early return removes the need for this control-flow-by-exception.
-
Konstantin Lutovich authored
Merge 2.0 to 2.1
-
Tobias Lindaaker authored
-
lutovich authored
Conflicts: community/kernel/src/main/java/org/neo4j/unsafe/batchinsert/BatchInserterImpl.java community/kernel/src/test/java/org/neo4j/unsafe/batchinsert/TestBatchInsert.java
-
Konstantin Lutovich authored
Add troubleshooting tip for WebLogic.
-
Andres Taylor authored
-
Mattias Persson authored
-
Andres Taylor authored
Improved plan description
-
Andres Taylor authored
Still work in progress - not used by default yet.
-
Andres Taylor authored
Removed the overhead of CandidateList
-
- 15 Dec, 2014 12 commits
-
-
Tobias Lindaaker authored
-
Mattias Persson authored
Store migrator sets base tx checksum if migrating empty store
-
Tobias Lindaaker authored
The ComponentVersion class for the import-tool was shadowing the one for kernel.
-
Mattias Persson authored
since there's this convention that txId=BASE_TX_ID has checksum BASE_TX_CHECKSUM. This logic exists in some places and StoreMigrator now follows that convention as well to avoid checksum mismatches.
-
Anders Nawroth authored
-
Mattias Persson authored
-
Davide Grohmann authored
Fixes shutdown issue with TaskExecutor
-
Tobias Lindaaker authored
Merge pull request #3658 from martinfurmanski/2.0-batch-inserter-should-honor-schema-creation-constraints Batch importer should throw an exception when schema creation constraints are violated.
-
Tobias Lindaaker authored
Refactor: Push schema index/constraint conflict messages into the exceptions to align with SPI.
-
Pontus Melke authored
Instead of building different pipes for relationship types that are known at planning time and the ones that are not, we now lazily initialize fetch the relationship type ids, and only ask to traverse by the types that actually exist at the point in time when the query executes.
-
Pontus Melke authored
-
Andres Taylor authored
-