ClickHouse/dbms/src/Functions/regexpQuoteMeta.cpp

11 lines
229 B
C++
Raw Normal View History

#include <Functions/FunctionRegexpQuoteMeta.h>
#include <Functions/FunctionFactory.h>
namespace DB
{
void registerFunctionRegexpQuoteMeta(FunctionFactory & factory)
{
factory.registerFunction<FunctionRegexpQuoteMeta>();
}
}