Skip to content

Commit d2ddf82

Browse files
committed
After-merge fix: GCC -Wconversion
1 parent a5d3c1c commit d2ddf82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

storage/innobase/row/row0mysql.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4670,7 +4670,7 @@ row_rename_table_for_mysql(
46704670

46714671
if (table != NULL) {
46724672
if (commit && !table->is_temporary()) {
4673-
table->stats_bg_flag &= ~BG_STAT_SHOULD_QUIT;
4673+
table->stats_bg_flag &= byte(~BG_STAT_SHOULD_QUIT);
46744674
}
46754675
dict_table_close(table, dict_locked, FALSE);
46764676
}

0 commit comments

Comments
 (0)