#if !defined(ARCADIA_BUILD) # include #endif #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 { void registerFunctionAESEncryptMysql(FunctionFactory & factory) { factory.registerFunction>(); } } #endif