mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-12 02:23:14 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
29 lines
598 B
C++
29 lines
598 B
C++
#include <Functions/FunctionFactory.h>
|
|
#include <Functions/FunctionsVisitParam.h>
|
|
#include <Functions/FunctionsStringSearch.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
struct HasParam
|
|
{
|
|
using ResultType = UInt8;
|
|
|
|
static UInt8 extract(const UInt8 *, const UInt8 *)
|
|
{
|
|
return true;
|
|
}
|
|
};
|
|
|
|
struct NameVisitParamHas { static constexpr auto name = "visitParamHas"; };
|
|
using FunctionVisitParamHas = FunctionsStringSearch<ExtractParamImpl<HasParam>, NameVisitParamHas>;
|
|
|
|
|
|
void registerFunctionVisitParamHas(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionVisitParamHas>();
|
|
}
|
|
|
|
}
|