mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-01 20:12:02 +00:00
11 lines
214 B
C++
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);
|
||
|
|
||
|
}
|