#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 { void registerFunctionAESDecryptMysql(FunctionFactory & factory) { factory.registerFunction>(); } } #endif