mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-04 21:42:39 +00:00
15 lines
206 B
C++
15 lines
206 B
C++
#include "FunctionsStringSearch.h"
|
|
#include "FunctionFactory.h"
|
|
#include "like.h"
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
void registerFunctionLike(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionLike>();
|
|
}
|
|
|
|
}
|