mirror of
https://github.com/MariaDB/server.git
synced 2025-01-15 19:42:28 +01:00
Fixed previous patch, wrong if() -test.
This commit is contained in:
parent
fbd929f802
commit
0b4db8addd
1 changed files with 2 additions and 2 deletions
|
@ -3571,8 +3571,8 @@ end_with_restore_list:
|
|||
res= TRUE; // cannot happen
|
||||
else
|
||||
{
|
||||
if ((thd->options & OPTION_KEEP_LOG) &&
|
||||
thd->no_trans_update.all && !thd->slave_thread)
|
||||
if (((thd->options & OPTION_KEEP_LOG) || thd->no_trans_update.all) &&
|
||||
!thd->slave_thread)
|
||||
push_warning(thd, MYSQL_ERROR::WARN_LEVEL_WARN,
|
||||
ER_WARNING_NOT_COMPLETE_ROLLBACK,
|
||||
ER(ER_WARNING_NOT_COMPLETE_ROLLBACK));
|
||||
|
|
Loading…
Reference in a new issue