summaryrefslogtreecommitdiffstats
path: root/sql/sp_rcontext.h
diff options
context:
space:
mode:
Diffstat (limited to 'sql/sp_rcontext.h')
-rw-r--r--sql/sp_rcontext.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sql/sp_rcontext.h b/sql/sp_rcontext.h
index ea669b2d..a891ab04 100644
--- a/sql/sp_rcontext.h
+++ b/sql/sp_rcontext.h
@@ -71,7 +71,7 @@ public:
///
/// @return valid sp_rcontext object or NULL in case of OOM-error.
static sp_rcontext *create(THD *thd,
- const sp_head *owner,
+ sp_head *owner,
const sp_pcontext *root_parsing_ctx,
Field *return_value_fld,
Row_definition_list &defs);
@@ -79,7 +79,7 @@ public:
~sp_rcontext();
private:
- sp_rcontext(const sp_head *owner,
+ sp_rcontext(sp_head *owner,
const sp_pcontext *root_parsing_ctx,
Field *return_value_fld,
bool in_sub_stmt);
@@ -169,7 +169,7 @@ public:
/// checking if correct runtime context is used for variable handling,
/// and to access the package run-time context.
/// Also used by slow log.
- const sp_head *m_sp;
+ sp_head *m_sp;
/////////////////////////////////////////////////////////////////////////
// SP-variables.