| 1487 | } |
| 1488 | |
| 1489 | static void remapNodes(ActionsDAG::NodeRawConstPtrs & keys, const ActionsDAG::NodeMapping & node_map) |
| 1490 | { |
| 1491 | for (const auto *& key : keys) |
| 1492 | { |
| 1493 | if (auto it = node_map.find(key); it != node_map.end()) |
| 1494 | key = it->second; |
| 1495 | } |
| 1496 | } |
| 1497 | |
| 1498 | static ActionsDAG cloneSubdagWithInputs(const SharedHeader & stream_header, ActionsDAG::NodeRawConstPtrs & keys) |
| 1499 | { |
no test coverage detected