aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Functions/base58Encode.cpp
blob: cf790ebddab286592393cf398ea5675f07ee0f88 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#include <Functions/FunctionBase58Conversion.h>
#include <Functions/FunctionFactory.h>

namespace DB
{
REGISTER_FUNCTION(Base58Encode)
{
    factory.registerFunction<FunctionBase58Conversion<Base58Encode>>();
}
}