aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Functions/visitParamExtractUInt.cpp
blob: fb58e417f347dedb2fc0195e23ca9424f3552e8b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <Functions/FunctionFactory.h>
#include <Functions/FunctionsVisitParam.h>
#include <Functions/FunctionsStringSearch.h>


namespace DB
{

struct NameSimpleJSONExtractUInt { static constexpr auto name = "simpleJSONExtractUInt"; };
using FunctionSimpleJSONExtractUInt = FunctionsStringSearch<ExtractParamImpl<NameSimpleJSONExtractUInt, ExtractNumericType<UInt64>>>;


REGISTER_FUNCTION(VisitParamExtractUInt)
{
    factory.registerFunction<FunctionSimpleJSONExtractUInt>();
    factory.registerAlias("visitParamExtractUInt", "simpleJSONExtractUInt");
}

}