ClickHouse/src/Functions/like.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
142 B
C++
Raw Normal View History

#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
}