diff options
author | Alexander Barkov <bar@mariadb.org> | 2017-06-30 16:26:15 +0400 |
---|---|---|
committer | Alexander Barkov <bar@mariadb.org> | 2017-06-30 16:26:15 +0400 |
commit | 505a11d9ac83bc6ac97f238b183253878f7fd7cf (patch) | |
tree | 9b997395f016a6985717cafec9daa45a251aa18a /sql/sp.h | |
parent | 95979d2baeef242c725bf41984693849b88b1906 (diff) | |
download | mariadb-git-505a11d9ac83bc6ac97f238b183253878f7fd7cf.tar.gz |
Adding the "const" qualifier to st_sp_chistics parameters in a few functions.
Diffstat (limited to 'sql/sp.h')
-rw-r--r-- | sql/sp.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -145,7 +145,7 @@ sp_create_routine(THD *thd, stored_procedure_type type, sp_head *sp); int sp_update_routine(THD *thd, stored_procedure_type type, const sp_name *name, - st_sp_chistics *chistics); + const st_sp_chistics *chistics); int sp_drop_routine(THD *thd, stored_procedure_type type, const sp_name *name); @@ -240,7 +240,7 @@ bool show_create_sp(THD *thd, String *buf, const char *params, ulong paramslen, const char *returns, ulong returnslen, const char *body, ulong bodylen, - st_sp_chistics *chistics, + const st_sp_chistics *chistics, const LEX_CSTRING *definer_user, const LEX_CSTRING *definer_host, sql_mode_t sql_mode); |