mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
MDEV-19599 Change db_name, table_name to LEX_CSTRING in Item_ident and Send_field
This commit is contained in:
@@ -2333,11 +2333,10 @@ sp_head::execute_procedure(THD *thd, List<Item> *args)
|
||||
break;
|
||||
}
|
||||
|
||||
Send_field *out_param_info= new (thd->mem_root) Send_field();
|
||||
nctx->get_parameter(i)->make_send_field(thd, out_param_info);
|
||||
out_param_info->db_name= m_db.str;
|
||||
out_param_info->table_name= m_name.str;
|
||||
out_param_info->org_table_name= m_name.str;
|
||||
Send_field *out_param_info= new (thd->mem_root) Send_field(thd, nctx->get_parameter(i));
|
||||
out_param_info->db_name= m_db;
|
||||
out_param_info->table_name= m_name;
|
||||
out_param_info->org_table_name= m_name;
|
||||
out_param_info->col_name= spvar->name;
|
||||
out_param_info->org_col_name= spvar->name;
|
||||
|
||||
|
Reference in New Issue
Block a user