From 8bca92c8845212ea96be404e664f4cbb45f93e2d Mon Sep 17 00:00:00 2001 From: Sergei Petrunia Date: Mon, 3 Aug 2020 13:03:37 +0300 Subject: [PATCH] Fix the typo in fix for MDEV-21472 --- sql/sql_admin.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sql/sql_admin.cc b/sql/sql_admin.cc index beecf3fae6475..3f518312526be 100644 --- a/sql/sql_admin.cc +++ b/sql/sql_admin.cc @@ -738,7 +738,7 @@ static bool mysql_admin_table(THD* thd, TABLE_LIST* tables, */ collect_eis= (table->table->s->table_category == TABLE_CATEGORY_USER && - !(lex->alter_info.flags &= Alter_info::ALTER_ADMIN_PARTITION) && + !(lex->alter_info.flags & Alter_info::ALTER_ADMIN_PARTITION) && (get_use_stat_tables_mode(thd) > NEVER || lex->with_persistent_for_clause));