#include "config.h" #if USE_SSL #include #include namespace { struct EncryptMySQLModeImpl { static constexpr auto name = "aes_encrypt_mysql"; static constexpr auto compatibility_mode = OpenSSLDetails::CompatibilityMode::MySQL; }; } namespace DB { REGISTER_FUNCTION(AESEncryptMysql) { factory.registerFunction>(); } } #endif