summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergei Petrunia <psergey@askmonty.org>2020-08-03 13:03:37 +0300
committerSergei Petrunia <psergey@askmonty.org>2020-08-03 13:03:37 +0300
commit8bca92c8845212ea96be404e664f4cbb45f93e2d (patch)
treeb53a2a7656d61ba28896c195851e5765a2cc4000
parentacfc500d037bbe1e2d9de8d713e3cf01bb7716aa (diff)
downloadmariadb-git-8bca92c8845212ea96be404e664f4cbb45f93e2d.tar.gz
Fix the typo in fix for MDEV-21472
-rw-r--r--sql/sql_admin.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_admin.cc b/sql/sql_admin.cc
index beecf3fae64..3f518312526 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));