Commit 14694c7a authored by unknown's avatar unknown

Bug #49137 Replication failure on SBR/MBR + multi-table DROP TEMPORARY TABLE

Fixed valgrind failure on PB2.

sql/log_event.cc:
  Added code to fix valgrind failure on PB2.
parents 31bc2d77 18d0901c
......@@ -3178,8 +3178,8 @@ START SLAVE; . Query: '%s'", expected_error, thd->query());
has already been dropped. To ignore such irrelevant "table does
not exist errors", we silently clear the error if TEMPORARY was used.
*/
if (thd->lex->drop_temporary && thd->is_error() &&
thd->main_da.sql_errno() == ER_BAD_TABLE_ERROR && !expected_error)
if (thd->is_error() && thd->main_da.sql_errno() == ER_BAD_TABLE_ERROR &&
!expected_error && thd->lex->drop_temporary)
thd->main_da.reset_diagnostics_area();
/*
If we expected a non-zero error code, and we don't get the same error
......
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