assert projectedColumns != null;
assert !projectedColumns.isEmpty();
columns = new QueryResultColumns(projectedColumns, context.getHints().hasFullTextSearch);
// Go through the plan and create the corresponding ProcessingComponents ...
Analyzer analyzer = createAnalyzer(context);
ProcessingComponent component = createComponent(command, context, plan, columns, analyzer);
long nanos2 = System.nanoTime();
statistics = statistics.withResultsFormulationTime(nanos2 - nanos);
nanos = nanos2;