mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 21:51:57 +00:00
18 lines
409 B
C++
18 lines
409 B
C++
|
#include <Functions/FunctionFactory.h>
|
||
|
#include <Functions/FunctionStringToString.h>
|
||
|
#include <Functions/domain.h>
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
struct NameDomain { static constexpr auto name = "domain"; };
|
||
|
using FunctionDomain = FunctionStringToString<ExtractSubstringImpl<ExtractDomain<false>>, NameDomain>;
|
||
|
|
||
|
|
||
|
void registerFunctionDomain(FunctionFactory & factory)
|
||
|
{
|
||
|
factory.registerFunction<FunctionDomain>();
|
||
|
}
|
||
|
|
||
|
}
|