mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 12:32:27 +01:00
BUG#16541422: LOG-SLAVE-UPDATES + REPLICATE-WILD-IGNORE-TABLE FAILS FOR USER VARIABLES
Fixed possible uninitialized variable.
This commit is contained in:
parent
0e763f4db5
commit
84bd6fec76
1 changed files with 1 additions and 1 deletions
|
@ -5967,7 +5967,7 @@ int User_var_log_event::do_apply_event(Relay_log_info const *rli)
|
||||||
{
|
{
|
||||||
Item *it= 0;
|
Item *it= 0;
|
||||||
CHARSET_INFO *charset;
|
CHARSET_INFO *charset;
|
||||||
query_id_t sav_query_id; /* memorize orig id when deferred applying */
|
query_id_t sav_query_id= 0; /* memorize orig id when deferred applying */
|
||||||
|
|
||||||
if (rli->deferred_events_collecting)
|
if (rli->deferred_events_collecting)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue