mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 13:42:02 +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]
17 lines
423 B
C++
17 lines
423 B
C++
#include <Functions/FunctionFactory.h>
|
|
#include <Functions/FunctionStringToString.h>
|
|
#include <Functions/fragment.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
struct NameFragment { static constexpr auto name = "fragment"; };
|
|
using FunctionFragment = FunctionStringToString<ExtractSubstringImpl<ExtractFragment<true>>, NameFragment>;
|
|
|
|
void registerFunctionFragment(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionFragment>();
|
|
}
|
|
|
|
}
|