| 606 | } |
| 607 | |
| 608 | static ActionsDAGPtr createProjection(const Block & header) |
| 609 | { |
| 610 | auto projection = std::make_shared<ActionsDAG>(header.getNamesAndTypesList()); |
| 611 | projection->removeUnusedActions(header.getNames()); |
| 612 | projection->projectInput(); |
| 613 | return projection; |
| 614 | } |
| 615 | |
| 616 | namespace |
| 617 | { |
no test coverage detected