ClickHouse/dbms/src/Functions/registerFunctionsString.cpp

66 lines
2.2 KiB
C++
Raw Normal View History

#include <Common/config.h>
2018-09-09 23:36:06 +00:00
namespace DB
{
class FunctionFactory;
2018-09-09 23:36:06 +00:00
void registerFunctionEmpty(FunctionFactory &);
void registerFunctionNotEmpty(FunctionFactory &);
void registerFunctionLength(FunctionFactory &);
void registerFunctionLengthUTF8(FunctionFactory &);
2019-05-17 12:55:21 +00:00
void registerFunctionIsValidUTF8(FunctionFactory &);
void registerFunctionToValidUTF8(FunctionFactory &);
2018-09-09 23:36:06 +00:00
void registerFunctionLower(FunctionFactory &);
void registerFunctionUpper(FunctionFactory &);
void registerFunctionLowerUTF8(FunctionFactory &);
void registerFunctionUpperUTF8(FunctionFactory &);
void registerFunctionReverse(FunctionFactory &);
void registerFunctionReverseUTF8(FunctionFactory &);
void registerFunctionsConcat(FunctionFactory &);
2019-05-18 11:30:36 +00:00
void registerFunctionFormat(FunctionFactory &);
2018-09-09 23:36:06 +00:00
void registerFunctionSubstring(FunctionFactory &);
void registerFunctionAppendTrailingCharIfAbsent(FunctionFactory &);
void registerFunctionStartsWith(FunctionFactory &);
void registerFunctionEndsWith(FunctionFactory &);
void registerFunctionTrim(FunctionFactory &);
void registerFunctionRegexpQuoteMeta(FunctionFactory &);
2018-10-11 16:22:50 +00:00
#if USE_BASE64
2018-10-10 01:04:07 +00:00
void registerFunctionBase64Encode(FunctionFactory &);
void registerFunctionBase64Decode(FunctionFactory &);
2018-11-02 19:06:05 +00:00
void registerFunctionTryBase64Decode(FunctionFactory &);
2018-10-11 16:22:50 +00:00
#endif
2018-09-09 23:36:06 +00:00
void registerFunctionsString(FunctionFactory & factory)
{
registerFunctionEmpty(factory);
registerFunctionNotEmpty(factory);
registerFunctionLength(factory);
registerFunctionLengthUTF8(factory);
2019-05-17 12:55:21 +00:00
registerFunctionIsValidUTF8(factory);
registerFunctionToValidUTF8(factory);
2018-09-09 23:36:06 +00:00
registerFunctionLower(factory);
registerFunctionUpper(factory);
registerFunctionLowerUTF8(factory);
registerFunctionUpperUTF8(factory);
registerFunctionReverse(factory);
registerFunctionReverseUTF8(factory);
registerFunctionsConcat(factory);
2019-05-18 11:30:36 +00:00
registerFunctionFormat(factory);
2018-09-09 23:36:06 +00:00
registerFunctionSubstring(factory);
registerFunctionAppendTrailingCharIfAbsent(factory);
registerFunctionStartsWith(factory);
registerFunctionEndsWith(factory);
registerFunctionTrim(factory);
registerFunctionRegexpQuoteMeta(factory);
2018-10-11 16:22:50 +00:00
#if USE_BASE64
2018-10-10 01:04:07 +00:00
registerFunctionBase64Encode(factory);
registerFunctionBase64Decode(factory);
2018-11-02 19:06:05 +00:00
registerFunctionTryBase64Decode(factory);
2018-10-11 16:22:50 +00:00
#endif
2018-09-09 23:36:06 +00:00
}
}