mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-15 10:52:30 +00:00
aa7e62ad5f
- makes it consistent with tryBase64Decode(), follow-up to #39292 - additionally the following minor changes: - rename Common/base58.h|cpp to Common/Base58.h|cpp for constency with Common/Base64.h|cpp - check that (encode|decode|tryDecode)Base64() gets just one argument
11 lines
213 B
C++
11 lines
213 B
C++
#include <Functions/FunctionBase58Conversion.h>
|
|
#include <Functions/FunctionFactory.h>
|
|
|
|
namespace DB
|
|
{
|
|
REGISTER_FUNCTION(Base58Encode)
|
|
{
|
|
factory.registerFunction<FunctionBase58Conversion<Base58Encode>>();
|
|
}
|
|
}
|