mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-02 04:22:03 +00:00
4088c0a7f3
Automated register all functions with below naming convention by iterating through the symbols: void DB::registerXXX(DB::FunctionFactory &)
26 lines
452 B
C++
26 lines
452 B
C++
#include "FunctionsStringSearch.h"
|
|
#include "FunctionFactory.h"
|
|
#include "MatchImpl.h"
|
|
|
|
namespace DB
|
|
{
|
|
namespace
|
|
{
|
|
|
|
struct NameILike
|
|
{
|
|
static constexpr auto name = "ilike";
|
|
};
|
|
|
|
using ILikeImpl = MatchImpl<NameILike, MatchTraits::Syntax::Like, MatchTraits::Case::Insensitive, MatchTraits::Result::DontNegate>;
|
|
using FunctionILike = FunctionsStringSearch<ILikeImpl>;
|
|
|
|
}
|
|
|
|
REGISTER_FUNCTION(ILike)
|
|
{
|
|
factory.registerFunction<FunctionILike>();
|
|
}
|
|
|
|
}
|