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_head.cc | |
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_head.cc')
-rw-r--r-- | sql/sp_head.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sp_head.cc b/sql/sp_head.cc index c87a15ff927..aa69de3f024 100644 --- a/sql/sp_head.cc +++ b/sql/sp_head.cc @@ -2455,7 +2455,7 @@ sp_head::sp_add_instr_cpush_for_cursors(THD *thd, sp_pcontext *pcontext) void sp_head::set_info(longlong created, longlong modified, - st_sp_chistics *chistics, sql_mode_t sql_mode) + const st_sp_chistics *chistics, sql_mode_t sql_mode) { m_created= created; m_modified= modified; |