use of org.apache.druid.math.expr.ExpressionProcessingModule in project druid by druid-io.
the class GuiceInjectors method makeDefaultStartupModules.
public static Collection<Module> makeDefaultStartupModules() {
return ImmutableList.of(new DruidGuiceExtensions(), new JacksonModule(), new PropertiesModule(Arrays.asList("common.runtime.properties", "runtime.properties")), new RuntimeInfoModule(), new ConfigModule(), new NullHandlingModule(), new ExpressionProcessingModule(), binder -> {
binder.bind(DruidSecondaryModule.class);
JsonConfigProvider.bind(binder, "druid.extensions", ExtensionsConfig.class);
JsonConfigProvider.bind(binder, "druid.modules", ModulesConfig.class);
});
}
Aggregations