Skip to content

Commit

Permalink
fix CalcitePlannerModuleTest
Browse files Browse the repository at this point in the history
  • Loading branch information
LakshSingla committed Sep 14, 2023
1 parent 54a664a commit 75652e6
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
import org.apache.druid.sql.calcite.aggregation.SqlAggregator;
import org.apache.druid.sql.calcite.expression.SqlOperatorConversion;
import org.apache.druid.sql.calcite.rule.ExtensionCalciteRuleProvider;
import org.apache.druid.sql.calcite.run.NativeSqlEngine;
import org.apache.druid.sql.calcite.schema.DruidSchemaCatalog;
import org.apache.druid.sql.calcite.schema.DruidSchemaName;
import org.apache.druid.sql.calcite.schema.NamedSchema;
Expand Down Expand Up @@ -188,7 +189,8 @@ public void testExtensionCalciteRule()
PlannerContext context = PlannerContext.create(
toolbox,
"SELECT 1",
null,
// Engine implementation required check engine features
new NativeSqlEngine(queryLifecycleFactory, new DefaultObjectMapper()),
Collections.emptyMap(),
null
);
Expand Down

0 comments on commit 75652e6

Please sign in to comment.