1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

WL#3337 (Events new architecture)

Cut 7 (refactoring)

db_repository is no more embedded in the Events
singleton. Therefore a change to Events_db_repository
won't mean recompile of all files in the server which include events.h
This commit is contained in:
andrey@lmy004.
2006-06-28 15:14:05 +02:00
parent 03e0a2315e
commit 98d1047715
5 changed files with 59 additions and 57 deletions

View File

@ -1304,7 +1304,7 @@ Event_timed::drop(THD *thd)
DBUG_ENTER("Event_timed::drop");
DBUG_RETURN(Events::get_instance()->
db_repository.drop_event(thd, dbname, name, false, &tmp));
db_repository->drop_event(thd, dbname, name, false, &tmp));
}