ClickHouse/src/Functions/like.cpp

15 lines
177 B
C++
Raw Normal View History

#include "FunctionsStringSearch.h"
#include "FunctionFactory.h"
2021-10-27 07:14:42 +00:00
#include "like.h"
namespace DB
{
REGISTER_FUNCTION(Like)
{
factory.registerFunction<FunctionLike>();
}
2020-09-07 18:00:37 +00:00
}