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