diff options
author | unknown <andrey@lmy004.> | 2006-02-21 02:40:23 +0100 |
---|---|---|
committer | unknown <andrey@lmy004.> | 2006-02-21 02:40:23 +0100 |
commit | ae48f5fdf7fd307471c3b56822f3e575e0ea9c3c (patch) | |
tree | 9d297d828010b8df29ff7c6412e6c17b693dfbf7 /sql/event.cc | |
parent | e41f5cc46463986e2b816c1b9f860a5a9b2f94a7 (diff) | |
download | mariadb-git-ae48f5fdf7fd307471c3b56822f3e575e0ea9c3c.tar.gz |
fix for bug#16407 (EVENTS: sql_mode)
post-review fixes
mysql-test/r/events_bugs.result:
fix result
sql/event.cc:
fix compilation problem on windows
sql/event_executor.cc:
show the right host in show processlist (should be event_scheduler@localhost)
sql/event_timed.cc:
a bit more debug infor
fix a problem introduced with previous push :( . clean everything that's whitespace.
found because of new test cases which were crashing.
sql/sql_show.cc:
fix compile problem on windows
Diffstat (limited to 'sql/event.cc')
-rw-r--r-- | sql/event.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/event.cc b/sql/event.cc index ad686398006..3fa41996995 100644 --- a/sql/event.cc +++ b/sql/event.cc @@ -1384,7 +1384,7 @@ evex_show_create_event(THD *thd, sp_name *spn, LEX_STRING definer) char show_str_buf[768]; String show_str(show_str_buf, sizeof(show_str_buf), system_charset_info); List<Item> field_list; - const char *sql_mode_str; + byte *sql_mode_str; ulong sql_mode_len=0; show_str.length(0); |