ClickHouse/src/Functions/hyperscanRegexpChecker.h

11 lines
195 B
C++
Raw Normal View History

#pragma once
2021-10-02 07:13:14 +00:00
#include <base/StringRef.h>
namespace DB
{
void checkRegexp(const std::vector<StringRef> & refs, size_t max_hyperscan_regexp_length, size_t max_hyperscan_regexp_total_length);
}