Fixed previous patch, wrong if() -test.

parent e4fde449
...@@ -3571,8 +3571,8 @@ end_with_restore_list: ...@@ -3571,8 +3571,8 @@ end_with_restore_list:
res= TRUE; // cannot happen res= TRUE; // cannot happen
else else
{ {
if ((thd->options & OPTION_KEEP_LOG) && if (((thd->options & OPTION_KEEP_LOG) || thd->no_trans_update.all) &&
thd->no_trans_update.all && !thd->slave_thread) !thd->slave_thread)
push_warning(thd, MYSQL_ERROR::WARN_LEVEL_WARN, push_warning(thd, MYSQL_ERROR::WARN_LEVEL_WARN,
ER_WARNING_NOT_COMPLETE_ROLLBACK, ER_WARNING_NOT_COMPLETE_ROLLBACK,
ER(ER_WARNING_NOT_COMPLETE_ROLLBACK)); ER(ER_WARNING_NOT_COMPLETE_ROLLBACK));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment