ClickHouse/src/Functions/base64Decode.cpp

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

19 lines
480 B
C++
Raw Normal View History

2018-10-11 16:22:50 +00:00
#include <Functions/FunctionBase64Conversion.h>
2018-10-11 16:22:50 +00:00
#if USE_BASE64
2019-06-20 09:12:49 +00:00
#include <Functions/FunctionFactory.h>
2018-10-10 01:04:07 +00:00
namespace DB
{
REGISTER_FUNCTION(Base64Decode)
2018-10-10 01:04:07 +00:00
{
2024-06-10 10:14:45 +00:00
factory.registerFunction<FunctionBase64Conversion<Base64Decode<Base64Variant::Normal>>>();
factory.registerFunction<FunctionBase64Conversion<Base64Decode<Base64Variant::Url>>>();
2023-09-09 16:48:17 +00:00
/// MySQL compatibility alias.
factory.registerAlias("FROM_BASE64", "base64Decode", FunctionFactory::CaseInsensitive);
2018-10-10 01:04:07 +00:00
}
2018-10-11 16:22:50 +00:00
}
2018-11-23 18:54:23 +00:00
#endif