diff options
author | Sergey Vojtovich <svoj@mariadb.org> | 2015-11-18 22:55:17 +0400 |
---|---|---|
committer | Sergey Vojtovich <svoj@mariadb.org> | 2015-11-26 11:34:16 +0400 |
commit | 0746a0770867b621cb4fee08239419bec69a2de8 (patch) | |
tree | 2c623b43229b17dd196fcb9c965c8c52c607f390 /sql/procedure.h | |
parent | 464394bf478a7f3b397ec7045627f827a34c1f09 (diff) | |
download | mariadb-git-0746a0770867b621cb4fee08239419bec69a2de8.tar.gz |
MDEV-8718 - Obsolete sql_strmake() in favor of THD::strmake() and thd_strmake()
Diffstat (limited to 'sql/procedure.h')
-rw-r--r-- | sql/procedure.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/procedure.h b/sql/procedure.h index a46e8cfc137..2326f375721 100644 --- a/sql/procedure.h +++ b/sql/procedure.h @@ -48,7 +48,7 @@ public: virtual void set(longlong nr)=0; virtual enum_field_types field_type() const=0; void set(const char *str) { set(str,(uint) strlen(str), default_charset()); } - void make_field(Send_field *tmp_field) + void make_field(THD *thd, Send_field *tmp_field) { init_make_field(tmp_field,field_type()); } |