mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 21:51:57 +00:00
12 lines
279 B
C++
12 lines
279 B
C++
|
#include <DataTypes/DataTypeString.h>
|
||
|
#include <Functions/FunctionFactory.h>
|
||
|
#include <Functions/FunctionBase64Conversion.h>
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
void registerFunctionBase64Decode(FunctionFactory &factory)
|
||
|
{
|
||
|
factory.registerFunction<FunctionBase64Conversion<Base64Decode>>();
|
||
|
}
|
||
|
}
|