mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
merged
This commit is contained in:
@ -2441,9 +2441,20 @@ bool
|
||||
insert_fields(THD *thd,TABLE_LIST *tables, const char *db_name,
|
||||
const char *table_name, List_iterator<Item> *it)
|
||||
{
|
||||
char name_buff[NAME_LEN+1];
|
||||
uint found;
|
||||
DBUG_ENTER("insert_fields");
|
||||
|
||||
|
||||
if (db_name && lower_case_table_names)
|
||||
{
|
||||
/* convert database to lower case for comparison */
|
||||
strmake( name_buff, db_name, sizeof(name_buff)-1 );
|
||||
casedn_str( name_buff );
|
||||
db_name = name_buff;
|
||||
}
|
||||
|
||||
|
||||
found=0;
|
||||
for (; tables ; tables=tables->next)
|
||||
{
|
||||
|
Reference in New Issue
Block a user