diff options
author | pem@mysql.comhem.se <> | 2005-04-14 14:52:35 +0200 |
---|---|---|
committer | pem@mysql.comhem.se <> | 2005-04-14 14:52:35 +0200 |
commit | 6aad6835c62d4bdb03047ee10f7864c73942bc1f (patch) | |
tree | 4d68d693e57a9c8510fa5a630fe0061668408ba8 /sql/sp_rcontext.h | |
parent | c9ad5e7673073f1e95fbbd16dbafe6ee92efd6e8 (diff) | |
download | mariadb-git-6aad6835c62d4bdb03047ee10f7864c73942bc1f.tar.gz |
Fixed BUG#9598: stored procedure call within stored procedure
overwrites IN variable
and added error checking of variables for [IN]OUT parameters while
rewriting the out parameter handling.
Diffstat (limited to 'sql/sp_rcontext.h')
-rw-r--r-- | sql/sp_rcontext.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/sql/sp_rcontext.h b/sql/sp_rcontext.h index 37d718048a0..afcd937a369 100644 --- a/sql/sp_rcontext.h +++ b/sql/sp_rcontext.h @@ -83,18 +83,6 @@ class sp_rcontext : public Sql_alloc } inline void - set_oindex(uint idx, int oidx) - { - m_outs[idx] = oidx; - } - - inline int - get_oindex(uint idx) - { - return m_outs[idx]; - } - - inline void set_result(Item *it) { m_result= it; @@ -187,7 +175,6 @@ private: uint m_count; uint m_fsize; Item **m_frame; - int *m_outs; Item *m_result; // For FUNCTIONs |