2019-02-10 17:40:52 +00:00
|
|
|
#include <Functions/FunctionFactory.h>
|
2018-10-11 16:22:50 +00:00
|
|
|
#include <Functions/FunctionBase64Conversion.h>
|
2019-12-15 06:34:43 +00:00
|
|
|
#include "config_functions.h"
|
|
|
|
|
2018-10-11 16:22:50 +00:00
|
|
|
#if USE_BASE64
|
2018-10-10 01:04:07 +00:00
|
|
|
#include <DataTypes/DataTypeString.h>
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
2018-10-12 08:46:53 +00:00
|
|
|
void registerFunctionBase64Encode(FunctionFactory & factory)
|
2018-10-10 01:04:07 +00:00
|
|
|
{
|
2019-12-28 00:18:08 +00:00
|
|
|
tb64ini(0, 1);
|
2018-10-10 01:04:07 +00:00
|
|
|
factory.registerFunction<FunctionBase64Conversion<Base64Encode>>();
|
|
|
|
}
|
2018-10-11 16:22:50 +00:00
|
|
|
}
|
2018-11-23 18:54:23 +00:00
|
|
|
#endif
|