Merge pull request #63101 from Slach/fix_mysql81

Fix mysql8.3 compatibilty for MaterializedMySQL
This commit is contained in:
Alexey Milovidov 2024-04-30 01:35:07 +02:00 committed by GitHub
commit 8475fae0ba
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -151,8 +151,7 @@ static void checkMySQLVariables(const mysqlxx::Pool::Entry & connection, const S
{"log_bin", "ON"},
{"binlog_format", "ROW"},
{"binlog_row_image", "FULL"},
{"default_authentication_plugin", "mysql_native_password"},
{"log_bin_use_v1_row_events", "OFF"}
{"default_authentication_plugin", "mysql_native_password"}
};
QueryPipeline pipeline(std::move(variables_input));