#include #include #include namespace DB { struct ExtractRaw { using ExpectChars = PODArrayWithStackMemory; static void extract(const UInt8 * pos, const UInt8 * end, ColumnString::Chars & res_data) { ExpectChars expects_end; UInt8 current_expect_end = 0; for (auto extract_begin = pos; pos != end; ++pos) { if (current_expect_end && *pos == current_expect_end) { expects_end.pop_back(); current_expect_end = expects_end.empty() ? 0 : expects_end.back(); } else { switch (*pos) { case '[': current_expect_end = ']'; expects_end.push_back(current_expect_end); break; case '{': current_expect_end = '}'; expects_end.push_back(current_expect_end); break; case '"' : current_expect_end = '"'; expects_end.push_back(current_expect_end); break; case '\\': /// skip backslash if (pos + 1 < end && pos[1] == '"') pos++; break; default: if (!current_expect_end && (*pos == ',' || *pos == '}')) { res_data.insert(extract_begin, pos); return; } } } } } }; struct NameVisitParamExtractRaw { static constexpr auto name = "visitParamExtractRaw"; }; using FunctionVisitParamExtractRaw = FunctionsStringSearchToString, NameVisitParamExtractRaw>; void registerFunctionVisitParamExtractRaw(FunctionFactory & factory) { factory.registerFunction(); } }