| 193 | }; |
| 194 | |
| 195 | std::optional<OperatorInfo> getOperatorInfo(const std::string & func_name) |
| 196 | { |
| 197 | if (auto info = tryGetExpressionOperatorPrettyInfo(func_name)) |
| 198 | return OperatorInfo{info->symbol, info->precedence}; |
| 199 | return std::nullopt; |
| 200 | } |
| 201 | |
| 202 | String formatConstant(const ActionsDAG::Node * node) |
| 203 | { |
no test coverage detected