ClickHouse/src/Functions/visitParamExtractInt.cpp

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

19 lines
551 B
C++
Raw Normal View History

#include <Functions/FunctionFactory.h>
#include <Functions/FunctionsVisitParam.h>
#include <Functions/FunctionsStringSearch.h>
namespace DB
{
2022-08-27 22:14:38 +00:00
struct NameSimpleJSONExtractInt { static constexpr auto name = "simpleJSONExtractInt"; };
using FunctionSimpleJSONExtractInt = FunctionsStringSearch<ExtractParamImpl<NameSimpleJSONExtractInt, ExtractNumericType<Int64>>>;
REGISTER_FUNCTION(VisitParamExtractInt)
{
2021-03-30 16:25:56 +00:00
factory.registerFunction<FunctionSimpleJSONExtractInt>();
2022-08-27 22:14:38 +00:00
factory.registerAlias("visitParamExtractInt", "simpleJSONExtractInt");
}
}