mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 05:32:52 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
19 lines
400 B
C++
19 lines
400 B
C++
#include "domain.h"
|
|
|
|
#include <Functions/FunctionFactory.h>
|
|
#include <Functions/FunctionStringToString.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
struct NameDomain { static constexpr auto name = "domain"; };
|
|
using FunctionDomain = FunctionStringToString<ExtractSubstringImpl<ExtractDomain<false>>, NameDomain>;
|
|
|
|
|
|
void registerFunctionDomain(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionDomain>();
|
|
}
|
|
|
|
}
|