mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 19:14:30 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
17 lines
413 B
C++
17 lines
413 B
C++
#include <Functions/FunctionFactory.h>
|
|
#include <Functions/FunctionStringToString.h>
|
|
#include "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>();
|
|
}
|
|
|
|
}
|