ClickHouse/src/Functions/right.cpp

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

14 lines
364 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
{
2024-07-17 20:39:37 +00:00
factory.registerFunction<FunctionLeftRight<false, SubstringDirection::Right>>({}, FunctionFactory::Case::Insensitive);
factory.registerFunction<FunctionLeftRight<true, SubstringDirection::Right>>({}, FunctionFactory::Case::Sensitive);
2022-01-05 02:32:40 +00:00
}
}