Package org.apache.calcite.adapter.druid
Class DruidSchema
java.lang.Object
org.apache.calcite.schema.impl.AbstractSchema
org.apache.calcite.adapter.druid.DruidSchema
- All Implemented Interfaces:
Schema
Schema mapped onto a Druid instance.
-
Nested Class Summary
Nested classes/interfaces inherited from class org.apache.calcite.schema.impl.AbstractSchema
AbstractSchema.FactoryNested classes/interfaces inherited from interface org.apache.calcite.schema.Schema
Schema.TableType -
Constructor Summary
ConstructorsConstructorDescriptionDruidSchema(String url, String coordinatorUrl, boolean discoverTables) Creates a Druid schema. -
Method Summary
Modifier and TypeMethodDescriptionReturns a map of tables in this schema by name.Methods inherited from class org.apache.calcite.schema.impl.AbstractSchema
getExpression, getFunctionMultimap, getFunctionNames, getFunctions, getSubSchema, getSubSchemaMap, getSubSchemaNames, getTable, getTableNames, getType, getTypeMap, getTypeNames, isMutable, snapshot, subSchemas, tables
-
Constructor Details
-
DruidSchema
Creates a Druid schema.- Parameters:
url- URL of query REST service, e.g. "http://localhost:8082"coordinatorUrl- URL of coordinator REST service, e.g. "http://localhost:8081"discoverTables- If true, ask Druid what tables exist; if false, only create tables explicitly in the model
-
-
Method Details
-
getTableMap
Description copied from class:AbstractSchemaReturns a map of tables in this schema by name.The implementations of
AbstractSchema.getTableNames()andAbstractSchema.getTable(String)depend on this map. The default implementation of this method returns the empty map. Override this method to change their behavior.- Overrides:
getTableMapin classAbstractSchema- Returns:
- Map of tables in this schema by name
-