diff options
author | Mikael Ronstrom <mikael.ronstrom@oracle.com> | 2011-01-20 18:24:48 +0100 |
---|---|---|
committer | Mikael Ronstrom <mikael.ronstrom@oracle.com> | 2011-01-20 18:24:48 +0100 |
commit | e31d7282090dadf3020874549bd690363276e772 (patch) | |
tree | 749170bf763fbadaaa51225313ee3a379109b21f /sql/sp_head.h | |
parent | 14a46479b64e1c0ee0ced10905c65e8c7e276d8b (diff) | |
download | mariadb-git-e31d7282090dadf3020874549bd690363276e772.tar.gz |
BUG#59549, fix compiler error on Windows, step 2
Diffstat (limited to 'sql/sp_head.h')
-rw-r--r-- | sql/sp_head.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sp_head.h b/sql/sp_head.h index 5efd48fc7c6..7ee80824b4d 100644 --- a/sql/sp_head.h +++ b/sql/sp_head.h @@ -560,7 +560,7 @@ public: /// Should give each a name or type code for debugging purposes? sp_instr(uint ip, sp_pcontext *ctx) - :Query_arena(0, INITIALIZED_FOR_SP), marked(0), m_ip(ip), m_ctx(ctx) + :Query_arena(0, ES_INITIALIZED_FOR_SP), marked(0), m_ip(ip), m_ctx(ctx) {} virtual ~sp_instr() |