mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-16 11:22:12 +00:00
25 lines
492 B
C++
25 lines
492 B
C++
|
#include <Functions/FunctionBase58Conversion.h>
|
||
|
#include <Functions/FunctionFactory.h>
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
namespace
|
||
|
{
|
||
|
|
||
|
struct NameTryBase58Decode
|
||
|
{
|
||
|
static constexpr auto name = "tryBase58Decode";
|
||
|
};
|
||
|
|
||
|
using TryBase58DecodeImpl = Base58Decode<NameTryBase58Decode, Base58DecodeErrorHandling::ReturnEmptyString>;
|
||
|
using FunctionTryBase58Decode = FunctionBase58Conversion<TryBase58DecodeImpl>;
|
||
|
|
||
|
}
|
||
|
|
||
|
REGISTER_FUNCTION(TryBase58Decode)
|
||
|
{
|
||
|
factory.registerFunction<FunctionTryBase58Decode>();
|
||
|
}
|
||
|
|
||
|
}
|