#include #if USE_SSL #include #include namespace { struct DecryptMySQLModeImpl { static constexpr auto name = "aes_decrypt_mysql"; static constexpr auto compatibility_mode = OpenSSLDetails::CompatibilityMode::MySQL; static constexpr bool use_null_when_decrypt_fail = false; }; } namespace DB { REGISTER_FUNCTION(AESDecryptMysql) { factory.registerFunction>(); } } #endif