mirror of
https://github.com/MariaDB/server.git
synced 2025-11-27 05:41:41 +03:00
MDEV-19599 Change db_name, table_name to LEX_CSTRING in Item_ident and Send_field
This commit is contained in:
@@ -93,8 +93,9 @@ static COND* make_cond(THD *thd, TABLE_LIST *tables, LEX_STRING *filter)
|
||||
{
|
||||
Item_cond_or *res= NULL;
|
||||
Name_resolution_context nrc;
|
||||
const char *db= tables->db.str, *table= tables->alias.str;
|
||||
LEX_CSTRING *field= &tables->table->field[0]->field_name;
|
||||
LEX_CSTRING &db= tables->db;
|
||||
LEX_CSTRING &table= tables->alias;
|
||||
LEX_CSTRING &field= tables->table->field[0]->field_name;
|
||||
CHARSET_INFO *cs= &my_charset_latin1;
|
||||
|
||||
if (!filter->str)
|
||||
|
||||
Reference in New Issue
Block a user