mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
review by felixcheung 18/09
This commit is contained in:
parent
1e3d6117fa
commit
5fb97ced62
7 changed files with 7 additions and 8 deletions
Binary file not shown.
|
Before Width: | Height: | Size: 42 KiB After Width: | Height: | Size: 25 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 43 KiB After Width: | Height: | Size: 29 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 3.3 MiB After Width: | Height: | Size: 1.5 MiB |
|
|
@ -33,9 +33,9 @@
|
|||
<name>Zeppelin: Neo4j interpreter</name>
|
||||
|
||||
<properties>
|
||||
<neo4j.driver.version>1.4.0</neo4j.driver.version>
|
||||
<test.neo4j.kernel.version>3.2.1</test.neo4j.kernel.version>
|
||||
<neo4j.version>3.2.1</neo4j.version>
|
||||
<neo4j.driver.version>1.4.3</neo4j.driver.version>
|
||||
<test.neo4j.kernel.version>3.2.3</test.neo4j.kernel.version>
|
||||
<neo4j.version>3.2.3</neo4j.version>
|
||||
<jackson.version>2.8.9</jackson.version>
|
||||
</properties>
|
||||
|
||||
|
|
|
|||
|
|
@ -36,7 +36,6 @@
|
|||
}
|
||||
},
|
||||
"editor": {
|
||||
"language": "cypher",
|
||||
"editOnDblClick": false
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -233,13 +233,13 @@ public class Neo4jCypherInterpreterTest {
|
|||
@Test
|
||||
public void testFallingQuery() {
|
||||
interpreter.open();
|
||||
final String ERROR_MSG_EMPTY = "%text Cypher query is Empty";
|
||||
final String ERROR_MSG_EMPTY = "";
|
||||
InterpreterResult result = interpreter.interpret(StringUtils.EMPTY, context);
|
||||
assertEquals(Code.ERROR, result.code());
|
||||
assertEquals(Code.SUCCESS, result.code());
|
||||
assertEquals(ERROR_MSG_EMPTY, result.toString());
|
||||
|
||||
result = interpreter.interpret(null, context);
|
||||
assertEquals(Code.ERROR, result.code());
|
||||
assertEquals(Code.SUCCESS, result.code());
|
||||
assertEquals(ERROR_MSG_EMPTY, result.toString());
|
||||
|
||||
result = interpreter.interpret("MATCH (n:Person{name: }) RETURN n.name AS name, n.age AS age", context);
|
||||
|
|
|
|||
|
|
@ -217,7 +217,7 @@ The following components are provided under Apache License.
|
|||
(Apache 2.0) frontend-maven-plugin 1.3 (com.github.eirslett:frontend-maven-plugin:1.3 - https://github.com/eirslett/frontend-maven-plugin/blob/frontend-plugins-1.3/LICENSE
|
||||
(Apache 2.0) frontend-plugin-core 1.3 (com.github.eirslett:frontend-plugin-core) - https://github.com/eirslett/frontend-maven-plugin/blob/frontend-plugins-1.3/LICENSE
|
||||
(Apache 2.0) mongo-java-driver 3.4.1 (org.mongodb:mongo-java-driver:3.4.1) - https://github.com/mongodb/mongo-java-driver/blob/master/LICENSE.txt
|
||||
(Apache 2.0) Neo4j Java Driver (https://github.com/neo4j/neo4j-java-driver) - https://github.com/neo4j/neo4j-java-driver/blob/1.4.0/LICENSE.txt
|
||||
(Apache 2.0) Neo4j Java Driver (https://github.com/neo4j/neo4j-java-driver) - https://github.com/neo4j/neo4j-java-driver/blob/1.4.3/LICENSE.txt
|
||||
|
||||
========================================================================
|
||||
MIT licenses
|
||||
|
|
|
|||
Loading…
Reference in a new issue