Repository: incubator-zeppelin Updated Branches: refs/heads/master 5ec59a81b -> 1d86d9b27
[HOTFIX] Fix master branch build error introduced by #611 ### What is this PR for? This PR provides HOTFIX for master branch build error introduced by #611 ### What type of PR is it? Hot Fix ### Todos * [x] - Fix unittest ### Is there a relevant Jira issue? N/A ### How should this be tested? N/A ### Screenshots (if appropriate) N/A ### Questions: * Does the licenses files need update? no * Is there breaking changes for older versions? no * Does this needs documentation? no Author: Lee moon soo <[email protected]> Closes #663 from Leemoonsoo/hotfix_ZEPPELIN-554 and squashes the following commits: a468b2e [Lee moon soo] Update unit test Project: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/commit/1d86d9b2 Tree: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/tree/1d86d9b2 Diff: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/diff/1d86d9b2 Branch: refs/heads/master Commit: 1d86d9b27ba628c960640edc6387d2bc93608ef0 Parents: 5ec59a8 Author: Lee moon soo <[email protected]> Authored: Wed Jan 20 15:57:00 2016 -0800 Committer: Lee moon soo <[email protected]> Committed: Wed Jan 20 16:29:28 2016 -0800 ---------------------------------------------------------------------- .../test/java/org/apache/zeppelin/jdbc/JDBCInterpreterTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/blob/1d86d9b2/jdbc/src/test/java/org/apache/zeppelin/jdbc/JDBCInterpreterTest.java ---------------------------------------------------------------------- diff --git a/jdbc/src/test/java/org/apache/zeppelin/jdbc/JDBCInterpreterTest.java b/jdbc/src/test/java/org/apache/zeppelin/jdbc/JDBCInterpreterTest.java index 83e0507..5d376f2 100644 --- a/jdbc/src/test/java/org/apache/zeppelin/jdbc/JDBCInterpreterTest.java +++ b/jdbc/src/test/java/org/apache/zeppelin/jdbc/JDBCInterpreterTest.java @@ -94,7 +94,7 @@ public class JDBCInterpreterTest extends BasicJDBCTestCaseAdapter { String sqlQuery = "select * from test_table"; - InterpreterResult interpreterResult = t.interpret(sqlQuery, new InterpreterContext("", "1", "","", null,null,null,null)); + InterpreterResult interpreterResult = t.interpret(sqlQuery, new InterpreterContext("", "1", "","", null,null,null,null,null)); assertEquals(InterpreterResult.Code.SUCCESS, interpreterResult.code()); assertEquals(InterpreterResult.Type.TABLE, interpreterResult.type()); @@ -116,7 +116,7 @@ public class JDBCInterpreterTest extends BasicJDBCTestCaseAdapter { String sqlQuery = "select * from test_table"; - InterpreterResult interpreterResult = t.interpret(sqlQuery, new InterpreterContext("", "1", "","", null,null,null,null)); + InterpreterResult interpreterResult = t.interpret(sqlQuery, new InterpreterContext("", "1", "","", null,null,null,null,null)); assertEquals(InterpreterResult.Code.SUCCESS, interpreterResult.code()); assertEquals(InterpreterResult.Type.TABLE, interpreterResult.type());
