| 133 | } |
| 134 | |
| 135 | std::string SubstraitParser::makeNodeName(int node_id, int col_idx) { |
| 136 | return fmt::format("n{}_{}", node_id, col_idx); |
| 137 | } |
| 138 | |
| 139 | int SubstraitParser::getIdxFromNodeName(const std::string& nodeName) { |
| 140 | // Get the position of "_" in the function name. |
no outgoing calls