Package org.apache.druid.query
Interface QueryLogic
-
- All Known Implementing Classes:
UnionQueryLogic
public interface QueryLogicProvides facilities to executes the given query type by utilizing theQuerySegmentWalkerto run subqueries if necessary.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <T> QueryRunner<Object>entryPoint(Query<T> query, QuerySegmentWalker walker)Builds aQueryRunnerfor the given query and walker.
-
-
-
Method Detail
-
entryPoint
<T> QueryRunner<Object> entryPoint(Query<T> query, QuerySegmentWalker walker)
Builds aQueryRunnerfor the given query and walker. The returned runner must respectResultSerializationMode.
-
-