mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 01:22:04 +00:00
20 lines
396 B
C++
20 lines
396 B
C++
#include <Functions/FunctionFactory.h>
|
|
#include <Functions/FunctionBase64Conversion.h>
|
|
|
|
#if !defined(ARCADIA_BUILD)
|
|
# include "config_functions.h"
|
|
#endif
|
|
|
|
#if USE_BASE64
|
|
# include <DataTypes/DataTypeString.h>
|
|
|
|
namespace DB
|
|
{
|
|
void registerFunctionBase64Encode(FunctionFactory & factory)
|
|
{
|
|
tb64ini(0, 1);
|
|
factory.registerFunction<FunctionBase64Conversion<Base64Encode>>();
|
|
}
|
|
}
|
|
#endif
|