diff options
author | andrey@lmy004. <> | 2006-07-13 10:59:58 +0200 |
---|---|---|
committer | andrey@lmy004. <> | 2006-07-13 10:59:58 +0200 |
commit | dd31d457898e129a9f22363741101780e028038f (patch) | |
tree | fb7407480fd7ae1b764e1bf59ec33047559bf6dd /sql/sp_head.cc | |
parent | 3f4e1f5c695215cd18222c359fa56eea4ab63664 (diff) | |
download | mariadb-git-dd31d457898e129a9f22363741101780e028038f.tar.gz |
WL #3337 (Events new architecture)
Final stroke, events should be loaded from disk on server startup.
Also check the validity of their bodies if possible during loading.
Diffstat (limited to 'sql/sp_head.cc')
-rw-r--r-- | sql/sp_head.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sql/sp_head.cc b/sql/sp_head.cc index 81f5d502ec9..d8995da7c16 100644 --- a/sql/sp_head.cc +++ b/sql/sp_head.cc @@ -640,10 +640,12 @@ sp_head::create(THD *thd) sp_head::~sp_head() { + DBUG_ENTER("sp_head::~sp_head"); destroy(); delete m_next_cached_sp; if (m_thd) restore_thd_mem_root(m_thd); + DBUG_VOID_RETURN; } void |