summaryrefslogtreecommitdiff
path: root/sql/event_db_repository.cc
diff options
context:
space:
mode:
authorunknown <andrey@lmy004.>2006-06-28 15:14:05 +0200
committerunknown <andrey@lmy004.>2006-06-28 15:14:05 +0200
commit400276c2f577f63ffd3871a91bce207f65d5e682 (patch)
tree500bd8f6271ea67c09b6cca7eb5ab8aad654e35b /sql/event_db_repository.cc
parent8ca78787a54f5d86f23147ca734e8e167a56b7b4 (diff)
downloadmariadb-git-400276c2f577f63ffd3871a91bce207f65d5e682.tar.gz
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 sql/event_data_objects.cc: 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 sql/event_db_repository.cc: 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 sql/events.cc: 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 sql/events.h: 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 sql/mysqld.cc: 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
Diffstat (limited to 'sql/event_db_repository.cc')
-rw-r--r--sql/event_db_repository.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/event_db_repository.cc b/sql/event_db_repository.cc
index 96d2b6c957f..fc771b6bac3 100644
--- a/sql/event_db_repository.cc
+++ b/sql/event_db_repository.cc
@@ -271,7 +271,7 @@ evex_db_find_event_by_name(THD *thd, const LEX_STRING dbname,
const LEX_STRING ev_name,
TABLE *table)
{
- return Events::get_instance()->db_repository.
+ return Events::get_instance()->db_repository->
find_event_by_name(thd, dbname, ev_name, table);
}