fix register function

This commit is contained in:
Duc Canh Le 2022-10-04 14:56:46 +08:00
parent a886804cbf
commit cd968ce43d

View File

@ -23,8 +23,8 @@ namespace DB
REGISTER_FUNCTION(TryDecrypt) REGISTER_FUNCTION(TryDecrypt)
{ {
factory.registerFunction<FunctionDecrypt<TryDecryptImpl>>( factory.registerFunction<FunctionDecrypt<TryDecryptImpl>>(Documentation(
"Similar to `decrypt`, but returns NULL if decryption fails because of using the wrong key."); "Similar to `decrypt`, but returns NULL if decryption fails because of using the wrong key."));
} }
} }