Github user manuzhang commented on a diff in the pull request:
https://github.com/apache/incubator-gearpump/pull/225#discussion_r139435162
--- Diff:
experiments/sql/src/test/java/org/apache/gearpump/sql/planner/CalciteTest.java
---
@@ -80,19 +80,38 @@
private RexExecutor executor;
private RelRoot root;
- public CalciteTest(FrameworkConfig config) {
- this.config = config;
- this.defaultSchema = config.getDefaultSchema();
- this.operatorTable = config.getOperatorTable();
- this.parserConfig = config.getParserConfig();
- this.state = State.STATE_0_CLOSED;
- this.traitDefs = config.getTraitDefs();
- this.convertletTable = config.getConvertletTable();
- this.executor = config.getExecutor();
+ @Before
+ public void setFrameworkConfig() throws ClassNotFoundException,
SQLException {
+
+ Class.forName("org.apache.calcite.jdbc.Driver");
--- End diff --
Is this used ?
---