diff options
author | unknown <bell@sanja.is.com.ua> | 2004-07-21 22:44:12 +0300 |
---|---|---|
committer | unknown <bell@sanja.is.com.ua> | 2004-07-21 22:44:12 +0300 |
commit | ff4aa03dc5e20501fbb3541dfef55f13cd7ca221 (patch) | |
tree | 10f2d2b4f13553227b0f0cc5c9801478bd1aca1b /sql/log_event.cc | |
parent | bf95f9195fe431841fe1e29e6b82c9f47ec52ad3 (diff) | |
download | mariadb-git-ff4aa03dc5e20501fbb3541dfef55f13cd7ca221.tar.gz |
LEX initialization fixed
Diffstat (limited to 'sql/log_event.cc')
-rw-r--r-- | sql/log_event.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/log_event.cc b/sql/log_event.cc index ffc54362ea2..d10b83d550a 100644 --- a/sql/log_event.cc +++ b/sql/log_event.cc @@ -1706,7 +1706,7 @@ int Load_log_event::exec_event(NET* net, struct st_relay_log_info* rli, Usually mysql_init_query() is called by mysql_parse(), but we need it here as the present method does not call mysql_parse(). */ - mysql_init_query(thd); + mysql_init_query(thd, 0, 0); if (!use_rli_only_for_errors) { #if MYSQL_VERSION_ID < 50000 |