ClickHouse/src/Functions/visitParamExtractString.cpp

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

30 lines
901 B
C++
Raw Normal View History

#include <Functions/FunctionFactory.h>
#include <Functions/FunctionsVisitParam.h>
#include <Functions/FunctionsStringSearchToString.h>
namespace DB
{
struct ExtractString
{
static void extract(const UInt8 * pos, const UInt8 * end, ColumnString::Chars & res_data)
{
size_t old_size = res_data.size();
ReadBufferFromMemory in(pos, end - pos);
if (!tryReadJSONStringInto(res_data, in))
res_data.resize(old_size);
}
};
2021-04-01 20:07:01 +00:00
struct NameSimpleJSONExtractString { static constexpr auto name = "simpleJSONExtractString"; };
2021-03-30 16:25:56 +00:00
using FunctionSimpleJSONExtractString = FunctionsStringSearchToString<ExtractParamToStringImpl<ExtractString>, NameSimpleJSONExtractString>;
REGISTER_FUNCTION(VisitParamExtractString)
{
2021-03-30 16:25:56 +00:00
factory.registerFunction<FunctionSimpleJSONExtractString>();
2022-08-27 22:14:38 +00:00
factory.registerAlias("visitParamExtractString", "simpleJSONExtractString");
}
}