diff options
author | andrey@lmy004. <> | 2006-06-28 01:28:03 +0200 |
---|---|---|
committer | andrey@lmy004. <> | 2006-06-28 01:28:03 +0200 |
commit | 9309fae9b5261e888f15d903b4110b272ffdb917 (patch) | |
tree | bf91f4ab6e97d25e3da5172541a1f76237dccfe4 /sql/mysqld.cc | |
parent | 0c439c9f761d804478b0826d5e3e3e60c4d59d97 (diff) | |
download | mariadb-git-9309fae9b5261e888f15d903b4110b272ffdb917.tar.gz |
WL#3337 (Events new architecture)
5th cut, moved DB related code to Event_db_repository and
updated accordingly the remanining code.
Moved change/restore_security_context() to class THD
Removed events_priv.h
Next step is to reorganize create/update_event() and parsing for them.
But probably some other refactoring could be done in the meanwhile.
The changes so far pass the test suite.
Diffstat (limited to 'sql/mysqld.cc')
-rw-r--r-- | sql/mysqld.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/mysqld.cc b/sql/mysqld.cc index 3f93de00594..a82f66acd19 100644 --- a/sql/mysqld.cc +++ b/sql/mysqld.cc @@ -886,7 +886,7 @@ static void close_connections(void) } (void) pthread_mutex_unlock(&LOCK_thread_count); // For unlink from list - Events::shutdown(); + Events::deinit(); end_slave(); if (thread_count) |