diff options
author | unknown <thek@adventure.(none)> | 2007-11-21 20:57:28 +0100 |
---|---|---|
committer | unknown <thek@adventure.(none)> | 2007-11-21 20:57:28 +0100 |
commit | 569c2dcd12735d249e3fc6b7eb41d61c4b565432 (patch) | |
tree | 56a4502f7ac333265e9987599f455992b346a5e2 /sql/sp_head.h | |
parent | dd98703b482a6d39772129c658f40679778c57b0 (diff) | |
parent | bc54a3736f64fa320475a290903d987b6aea97ea (diff) | |
download | mariadb-git-569c2dcd12735d249e3fc6b7eb41d61c4b565432.tar.gz |
Merge adventure.(none):/home/thek/Development/cpp/bug31153/my51-bug31153
into adventure.(none):/home/thek/Development/cpp/mysql-5.1-runtime
sql/mysqld.cc:
Auto merged
sql/sp_head.cc:
Auto merged
sql/sp_head.h:
Auto merged
sql/sql_base.cc:
Auto merged
sql/sql_lex.h:
Auto merged
sql/sql_prepare.cc:
Auto merged
sql/sql_yacc.yy:
Auto merged
Diffstat (limited to 'sql/sp_head.h')
-rw-r--r-- | sql/sp_head.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sql/sp_head.h b/sql/sp_head.h index d74170534bd..86a77a434ff 100644 --- a/sql/sp_head.h +++ b/sql/sp_head.h @@ -260,10 +260,10 @@ public: Security_context m_security_ctx; static void * - operator new(size_t size); + operator new(size_t size) throw (); static void - operator delete(void *ptr, size_t size); + operator delete(void *ptr, size_t size) throw (); sp_head(); @@ -326,7 +326,7 @@ public: } // Resets lex in 'thd' and keeps a copy of the old one. - void + bool reset_lex(THD *thd); // Restores lex in 'thd' from our copy, but keeps some status from the |