mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
5b1eaba276
* Every function in its own file, part 6 [#CLICKHOUSE-2] * Every function in its own file, part 6 [#CLICKHOUSE-2] * Every function in its own file, part 6 [#CLICKHOUSE-2]
18 lines
418 B
C++
18 lines
418 B
C++
#include <Functions/FunctionFactory.h>
|
|
#include <Functions/FunctionStringToString.h>
|
|
#include <Functions/protocol.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
struct NameProtocol { static constexpr auto name = "protocol"; };
|
|
using FunctionProtocol = FunctionStringToString<ExtractSubstringImpl<ExtractProtocol>, NameProtocol>;
|
|
|
|
void registerFunctionProtocol(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionProtocol>();
|
|
}
|
|
|
|
}
|