1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

WL#1034 update

fix bug with DROP EVENT non_existant; giving back OK + warning
This commit is contained in:
andrey@lmy004.
2005-12-16 09:49:24 +01:00
parent ab953ea8c1
commit de08cd2b0a
2 changed files with 2 additions and 2 deletions

View File

@@ -3696,7 +3696,7 @@ end_with_restore_list:
res= evex_update_event(thd, lex->et, lex->spname);
break;
case SQLCOM_DROP_EVENT:
evex_drop_event(thd, lex->et, lex->drop_if_exists);
res= evex_drop_event(thd, lex->et, lex->drop_if_exists);
default:;
}
if (!res)