mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-25 17:12:03 +00:00
Add base64Decode MySQL compatibility alias
This commit is contained in:
parent
54bef0568b
commit
685b4107d2
@ -10,6 +10,9 @@ void registerFunctionBase64Decode(FunctionFactory & factory)
|
|||||||
{
|
{
|
||||||
tb64ini(0, 1);
|
tb64ini(0, 1);
|
||||||
factory.registerFunction<FunctionBase64Conversion<Base64Decode>>();
|
factory.registerFunction<FunctionBase64Conversion<Base64Decode>>();
|
||||||
|
|
||||||
|
/// MysQL compatibility alias.
|
||||||
|
factory.registerFunction<FunctionBase64Conversion<Base64Decode>>("FROM_BASE64", FunctionFactory::CaseInsensitive);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user