Florent Biville
Florent Biville
It seems currently impossible to have a custom `IUsageFormatter` that propagates to commands: Here is the current stable version of the canonical `addCommand` (v1.78). ```java public void addCommand(String name, Object...
This behavior is not observed with Java `Properties#load(InputStream)`. In that case, quotes are not preserved in the deserialized value.
In the case of importing several node CSVs (with e.g. 1 CSV 1 table "dump"), it would be extra nice to have batch-import figure out what the relationships are. Manually...
Such as http://jcommander.org/ or http://args4j.kohsuke.org/. This will remove a lot of boilerplate code and greatly ease the interaction with batch-import. I just post this issue in case someone has time...
Removed extra comma Remove command from the label since the command is logged afterwards
I just spent hours scratching my head trying to understand why my server would not start and always get the error: ```shell Unable to locate executable file: [...] ``` The...
**Describe the Bug** Currently, the `Neo4j` migration driver opens a session for each `Run` call (and others such as `SetVersion` and `Version`). This may cause an issue with Neo4j clusters...
- update to v4.4.1 of the Go driver - rely solely on URI scheme for connection encryption - replace autocommit (`Session#Run`) with transaction functions since the former does not work...
This is currently forbidden: ``` $> UNWIND [1,2,3] AS x WITH x,2 as foo RETURN x LIMIT foo Error: org.neo4j.graphdb.QueryExecutionException: It is not allowed to refer to variables in LIMIT...
As perfectly explained [here](http://www.markhneedham.com/blog/2013/11/22/neo4j-cypher-creating-relationships-between-nodes-from-adjacent-rows-in-a-query/), the following query is not allowed in Cypher: ``` [...] FOREACH(i in RANGE(0, length(seasons)-2) | MERGE (seasons[i])-[:NEXT]->(seasons[i+1]))) ``` Instead, the following workaround has to be applied:...