mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-18 20:32:43 +00:00
18 lines
401 B
C++
18 lines
401 B
C++
#include <Functions/FunctionBase58Conversion.h>
|
|
#if USE_BASEX
|
|
#include <Functions/FunctionFactory.h>
|
|
|
|
namespace DB
|
|
{
|
|
void registerFunctionBase58Encode(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionBase58Conversion<Base58Encode>>();
|
|
}
|
|
|
|
void registerFunctionBase58Decode(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionBase58Conversion<Base58Decode>>();
|
|
}
|
|
}
|
|
#endif
|