mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 21:51:57 +00:00
17 lines
447 B
C++
17 lines
447 B
C++
|
#include <Functions/FunctionFactory.h>
|
||
|
#include <Functions/FunctionStringToString.h>
|
||
|
#include <Functions/queryString.h>
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
struct NameQueryString { static constexpr auto name = "queryString"; };
|
||
|
using FunctionQueryString = FunctionStringToString<ExtractSubstringImpl<ExtractQueryString<true>>, NameQueryString>;
|
||
|
|
||
|
void registerFunctionQueryString(FunctionFactory & factory)
|
||
|
{
|
||
|
factory.registerFunction<FunctionQueryString>();
|
||
|
}
|
||
|
|
||
|
}
|