mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-14 18:32:29 +00:00
15 lines
243 B
C++
15 lines
243 B
C++
#include <Functions/FunctionBase64Conversion.h>
|
|
|
|
#if USE_BASE64
|
|
#include <Functions/FunctionFactory.h>
|
|
|
|
namespace DB
|
|
{
|
|
REGISTER_FUNCTION(TryBase64Decode)
|
|
{
|
|
factory.registerFunction<FunctionBase64Conversion<TryBase64Decode>>();
|
|
}
|
|
}
|
|
|
|
#endif
|