mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 21:51:57 +00:00
17 lines
438 B
C++
17 lines
438 B
C++
|
#include <Functions/FunctionFactory.h>
|
||
|
#include <Functions/fragment.h>
|
||
|
#include <Functions/FunctionStringToString.h>
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
struct NameCutFragment { static constexpr auto name = "cutFragment"; };
|
||
|
using FunctionCutFragment = FunctionStringToString<CutSubstringImpl<ExtractFragment<false>>, NameCutFragment>;
|
||
|
|
||
|
void registerFunctionCutFragment(FunctionFactory & factory)
|
||
|
{
|
||
|
factory.registerFunction<FunctionCutFragment>();
|
||
|
}
|
||
|
|
||
|
}
|