diff options
author | unknown <thek@adventure.(none)> | 2007-11-21 11:25:17 +0100 |
---|---|---|
committer | unknown <thek@adventure.(none)> | 2007-11-21 11:25:17 +0100 |
commit | bc54a3736f64fa320475a290903d987b6aea97ea (patch) | |
tree | 8d7492ebc1f5101e4152cfe287baaa8e2b10a809 /sql/sp_head.h | |
parent | ded7fe7fd16d35b0a63a7a417b67fdd31df5033d (diff) | |
parent | bb681dbc883343ed2c503c15833720f8da499317 (diff) | |
download | mariadb-git-bc54a3736f64fa320475a290903d987b6aea97ea.tar.gz |
Merge adventure.(none):/home/thek/Development/cpp/bug31153/my50-bug31153
into adventure.(none):/home/thek/Development/cpp/bug31153/my51-bug31153
sql/mysqld.cc:
Auto merged
sql/sp_head.cc:
Auto merged
sql/sp_head.h:
Auto merged
sql/sql_prepare.cc:
Auto merged
sql/sql_yacc.yy:
Null merge.
sql/sql_base.cc:
Manual merge
sql/sql_lex.h:
Manual merge
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 3a8b41acd4c..93040bc3ca0 100644 --- a/sql/sp_head.h +++ b/sql/sp_head.h @@ -269,10 +269,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(); @@ -335,7 +335,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 |