1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

MDEV-8718 - Obsolete sql_strmake() in favor of THD::strmake() and thd_strmake()

This commit is contained in:
Sergey Vojtovich
2015-11-18 22:55:17 +04:00
parent 464394bf47
commit 0746a07708
24 changed files with 105 additions and 111 deletions

View File

@ -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)