mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 23:52:03 +00:00
13 lines
215 B
C++
13 lines
215 B
C++
#include <Functions/FunctionBase58Conversion.h>
|
|
#include <Functions/FunctionFactory.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
REGISTER_FUNCTION(Base58Encode)
|
|
{
|
|
factory.registerFunction<FunctionBase58Conversion<Base58Encode>>();
|
|
}
|
|
|
|
}
|