mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-29 19:12:03 +00:00
19 lines
551 B
C++
19 lines
551 B
C++
#include <Functions/FunctionFactory.h>
|
|
#include <Functions/FunctionsVisitParam.h>
|
|
#include <Functions/FunctionsStringSearch.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
struct NameSimpleJSONExtractInt { static constexpr auto name = "simpleJSONExtractInt"; };
|
|
using FunctionSimpleJSONExtractInt = FunctionsStringSearch<ExtractParamImpl<NameSimpleJSONExtractInt, ExtractNumericType<Int64>>>;
|
|
|
|
REGISTER_FUNCTION(VisitParamExtractInt)
|
|
{
|
|
factory.registerFunction<FunctionSimpleJSONExtractInt>();
|
|
factory.registerAlias("visitParamExtractInt", "simpleJSONExtractInt");
|
|
}
|
|
|
|
}
|