| 267 | } |
| 268 | |
| 269 | bool PrometheusQueryTree::tryParse(std::string_view promql_query_, UInt32 timestamp_scale_, String * error_message_, size_t * error_pos_) |
| 270 | { |
| 271 | return PrometheusQueryParsingUtil::tryParseQuery(promql_query_, timestamp_scale_, *this, error_message_, error_pos_); |
| 272 | } |
| 273 | |
| 274 | |
| 275 | namespace |
nothing calls this directly
no test coverage detected