mirror of
https://github.com/MariaDB/server.git
synced 2025-07-17 12:02:09 +03:00
MDEV-19599 Change db_name, table_name to LEX_CSTRING in Item_ident and Send_field
This commit is contained in:
@ -284,12 +284,11 @@ int Materialized_cursor::send_result_set_metadata(
|
||||
*/
|
||||
while ((item_dst= it_dst++, item_org= it_org++))
|
||||
{
|
||||
Send_field send_field;
|
||||
Item_ident *ident= static_cast<Item_ident *>(item_dst);
|
||||
item_org->make_send_field(thd, &send_field);
|
||||
Send_field send_field(thd, item_org);
|
||||
|
||||
ident->db_name= thd->strdup(send_field.db_name);
|
||||
ident->table_name= thd->strdup(send_field.table_name);
|
||||
ident->db_name= thd->strmake_lex_cstring(send_field.db_name);
|
||||
ident->table_name= thd->strmake_lex_cstring(send_field.table_name);
|
||||
}
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user