mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-03 13:02:00 +00:00
29 lines
619 B
C++
29 lines
619 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 NameSimpleJSONHas { static constexpr auto name = "simpleJSONHas"; };
|
|
using FunctionSimpleJSONHas = FunctionsStringSearch<ExtractParamImpl<NameSimpleJSONHas, HasParam>>;
|
|
|
|
REGISTER_FUNCTION(VisitParamHas)
|
|
{
|
|
factory.registerFunction<FunctionSimpleJSONHas>();
|
|
factory.registerAlias("visitParamHas", "simpleJSONHas");
|
|
}
|
|
|
|
}
|