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 /libmysqld | |
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 'libmysqld')
-rw-r--r-- | libmysqld/lib_sql.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmysqld/lib_sql.cc b/libmysqld/lib_sql.cc index 86a0676d97e..5035064b8e0 100644 --- a/libmysqld/lib_sql.cc +++ b/libmysqld/lib_sql.cc @@ -1029,7 +1029,7 @@ bool Protocol::send_result_set_metadata(List<Item> *list, uint flags) while ((item= it++)) { Send_field server_field; - item->make_field(&server_field); + item->make_field(thd, &server_field); /* Keep things compatible for old clients */ if (server_field.type == MYSQL_TYPE_VARCHAR) |