| 65 | } |
| 66 | |
| 67 | ExpressionStep::ExpressionStep(SharedHeader input_header_, ActionsDAG actions_dag_) |
| 68 | : ITransformingStep( |
| 69 | input_header_, |
| 70 | std::make_shared<const Block>(ExpressionTransform::transformHeader(*input_header_, actions_dag_)), |
| 71 | getTraits(actions_dag_)) |
| 72 | , actions_dag(std::move(actions_dag_)) |
| 73 | { |
| 74 | } |
| 75 | |
| 76 | void ExpressionStep::transformPipeline(QueryPipelineBuilder & pipeline, const BuildQueryPipelineSettings & settings) |
| 77 | { |
nothing calls this directly
no test coverage detected