mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
aliases should be compared with my_strcasecmp (BUG#3251)
some db comparison code cleupup removed compiler warnings mysql-test/r/lowercase_table.result: test for BUG#3251 mysql-test/t/lowercase_table.test: test for BUG#3251 sql/item.cc: simple strcmp can be used for db name comparison sql/set_var.h: changed initialisation order to satisfy compiler sql/sql_cache.cc: simple strcmp can be used for db name comparison sql/sql_db.cc: better use special cherset for files sql/sql_parse.cc: simple strcmp can be used for db name comparison aliases should be compared with my_strcasecmp sql/sql_select.cc: aliases should be compared with my_strcasecmp
This commit is contained in:
@ -1259,12 +1259,7 @@ void Query_cache::invalidate(char *db)
|
||||
do
|
||||
{
|
||||
next= curr->next;
|
||||
/*
|
||||
table_alias_charset used here because it depends of
|
||||
lower_case_table_names variable
|
||||
*/
|
||||
if (my_strcasecmp(table_alias_charset, db,
|
||||
(char*)(curr->table()->db())) == 0)
|
||||
if (strcmp(db, (char*)(curr->table()->db())) == 0)
|
||||
invalidate_table(curr);
|
||||
/*
|
||||
invalidate_table can freed block on which point 'next' (if
|
||||
|
Reference in New Issue
Block a user