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.
- 18 Dec, 2014 12 commits
-
-
Neo4j Build Server authored
-
Neo4j Build Server authored
-
Mattias Persson authored
-
Mattias Persson authored
-
Mattias Persson authored
Conflicts: community/kernel/src/main/java/org/neo4j/kernel/impl/traversal/TraverserImpl.java community/kernel/src/main/java/org/neo4j/kernel/impl/traversal/TraverserIterator.java
-
Mattias Persson authored
Fixed issue with prematurely exhausted iterator.
-
Andres Taylor authored
This reverts commit c431cd80 and f0ffe0dc.
-
Andres Taylor authored
-
Davide Grohmann authored
Conflicts: community/kernel/src/main/java/org/neo4j/kernel/impl/api/LockingStatementOperations.java community/kernel/src/main/java/org/neo4j/kernel/impl/api/StateHandlingStatementOperations.java community/kernel/src/main/java/org/neo4j/kernel/impl/api/store/CacheLayer.java community/kernel/src/main/java/org/neo4j/kernel/impl/api/store/PersistenceCache.java
-
Davide Grohmann authored
Existance of node/rel is checked before deletion
-
Andres Taylor authored
Argument ids and hints support in exhaustive planner
-
Andres Taylor authored
Better output for compare expressions in plan descriptions.
-
- 17 Dec, 2014 23 commits
-
-
Oskar Hane authored
- Add button in drawer to open grass viewer. - Fix backward compability for {id} and {type}.
-
Johan Svensson authored
Fixes a race allowing transactions to be rotate away before applied
-
Mattias Persson authored
The problem was that there was a window after appending the transaction to the log and before marking that transaction as committed where a log rotation could come in and rotate the log. The rotator would not wait for the transaction(s) that had just been appended, and potentially also forced since it hadn't even been marked as committed yet. So a crash right after or at least before the changes of such transactions would have been applied and fully forced to the store would be lost since the transaction describing those changes would not be recovered.
-
Pontus Melke authored
By exhausting the iterator on initialization, some queries lead to a lot of unnecessary dbhits, e.g. ```` profile MATCH (n:topic)-[r]->(m:topic) return n,r,m limit 1; +------------------+------+----------+-------------+----------------------+ | Operator | Rows | DbHits | Identifiers | Other | +------------------+------+----------+-------------+----------------------+ | Slice | 1 | 0 | | { AUTOINT0} | | Filter | 1 | 1 | | hasLabel(m:topic(0)) | | TraversalMatcher | 1 | 11292978 | | m, r, m | +------------------+------+----------+-------------+----------------------+ Total database accesses: 11292979 ```` should ideally only touch a small portion of the graph but ends up touching something like 50% instead. This fix I believe fix this.
-
Pontus Melke authored
When using unnamed identifiers instead of just removing all unnamed identifiers leading to outputs like `NOT( == )`, we now output `NOT(anon[22] == anon[42])`.
-
Jacob Hansson authored
Request direct url to skip redirect in wedadmin.
-
Alistair Jones authored
Update MSIE version check.
-
Alistair Jones authored
Polish inspector attributes overflow and indicator.
-
Alistair Jones authored
Fix collision on item properties and node-id / rel type in GraSS.
-
Davide Grohmann authored
-
Davide Grohmann authored
-
rickardoberg authored
-
rickardoberg authored
-
lutovich 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 5 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
-