use of com.bakdata.conquery.models.query.queryplan.ArrayConceptQueryPlan in project conquery by bakdata.
the class ArrayConceptQuery method createQueryPlan.
@Override
public ArrayConceptQueryPlan createQueryPlan(QueryPlanContext context) {
// Make sure the constructor and the adding is called with the same context.
ArrayConceptQueryPlan aq = new ArrayConceptQueryPlan(!DateAggregationMode.NONE.equals(resolvedDateAggregationMode));
aq.addChildPlans(childQueries, context);
return aq;
}
Aggregations