diff options
author | Mattias Jonsson <mattias.jonsson@sun.com> | 2009-11-20 01:20:08 +0100 |
---|---|---|
committer | Mattias Jonsson <mattias.jonsson@sun.com> | 2009-11-20 01:20:08 +0100 |
commit | 4205c622e1a741bae1b2d8d213342f8e0bdd936a (patch) | |
tree | 4b9fd991ba2f7431fafe2ed600766cf02e9320ee /sql/slave.cc | |
parent | 92bfebb66eaddacd5d2dfa6cf749d721a921ff4c (diff) | |
download | mariadb-git-4205c622e1a741bae1b2d8d213342f8e0bdd936a.tar.gz |
Bug#32115: Bad use of Name_resolution_context from current LEX in partitioning
port from mysql-next (5.4?) to mysql-next-mr-bugfixes (5.5/5.6?)
3477 Mikael Ronstrom 2009-07-29
Bug#32115, made use of local lex object to avoid side effects of opening partitioned
tables
3478 Mikael Ronstrom 2009-07-29
Bug#32115, added an extra test in debug builds to ensure no dangling pointers to the
old lex object is still around
3479 Mikael Ronstrom 2009-07-29
Bug#32115, Removed an assert that was no longer needed
3480 Mikael Ronstrom 2009-08-05
Bug#32115, fixed review comments
3481 Mikael Ronstrom 2009-08-07
Bug#32115, remove now obsolete lex_start calls
Diffstat (limited to 'sql/slave.cc')
-rw-r--r-- | sql/slave.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sql/slave.cc b/sql/slave.cc index 8be17860c61..d49031ef066 100644 --- a/sql/slave.cc +++ b/sql/slave.cc @@ -2121,7 +2121,6 @@ static int init_slave_thread(THD* thd, SLAVE_THD_TYPE thd_type) thd->cleanup(); DBUG_RETURN(-1); } - lex_start(thd); if (thd_type == SLAVE_THD_SQL) thd_proc_info(thd, "Waiting for the next event in relay log"); |