ClickHouse/src/Functions/checkHyperscanRegexp.h
Robert Schulze e5c74a14f7
Cosmetics: More consistent naming
- rename utility function and file to "checkHyperscanRegexp"
2022-06-26 15:33:18 +00:00

11 lines
214 B
C++

#pragma once
#include <base/StringRef.h>
namespace DB
{
void checkHyperscanRegexp(const std::vector<std::string_view> & regexps, size_t max_hyperscan_regexp_length, size_t max_hyperscan_regexp_total_length);
}