MCPcopy Create free account
hub / github.com/ClickHouse/ClickHouse / remapNodes

Function remapNodes

src/Processors/QueryPlan/JoinStepLogical.cpp:1489–1496  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1487}
1488
1489static 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
1498static ActionsDAG cloneSubdagWithInputs(const SharedHeader & stream_header, ActionsDAG::NodeRawConstPtrs & keys)
1499{

Callers 1

cloneSubdagWithInputsFunction · 0.70

Calls 2

findMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected