ClickHouse/src/Functions/right.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
360 B
C++
Raw Normal View History

2022-01-05 02:32:40 +00:00
#include <Functions/FunctionFactory.h>
#include <Functions/LeftRight.h>
namespace DB
{
REGISTER_FUNCTION(Right)
2022-01-05 02:32:40 +00:00
{
2022-08-27 20:06:03 +00:00
factory.registerFunction<FunctionLeftRight<false, SubstringDirection::Right>>({}, FunctionFactory::CaseInsensitive);
factory.registerFunction<FunctionLeftRight<true, SubstringDirection::Right>>({}, FunctionFactory::CaseSensitive);
2022-01-05 02:32:40 +00:00
}
}