| 1957 | } |
| 1958 | |
| 1959 | bool ActionsDAG::hasArrayJoin() const noexcept |
| 1960 | { |
| 1961 | for (const auto & node : nodes) |
| 1962 | if (node.type == ActionType::ARRAY_JOIN) |
| 1963 | return true; |
| 1964 | |
| 1965 | return false; |
| 1966 | } |
| 1967 | |
| 1968 | bool ActionsDAG::hasStatefulFunctions() const |
| 1969 | { |
no outgoing calls
no test coverage detected