mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Fix for BUG#13067 "JOIN ... USING is case sensitive".
mysql-test/r/select.result: Test for BUG#13067 mysql-test/t/select.test: Test for BUG#13067 sql/sql_base.cc: Correctly compare field names with respect to case sensitivity.
This commit is contained in:
@ -3414,7 +3414,7 @@ test_if_string_in_list(const char *find, List<String> *str_list)
|
||||
{
|
||||
if (find_length != curr_str->length())
|
||||
continue;
|
||||
if (!strncmp(find, curr_str->ptr(), find_length))
|
||||
if (!my_strcasecmp(system_charset_info, find, curr_str->ptr()))
|
||||
return TRUE;
|
||||
}
|
||||
return FALSE;
|
||||
|
Reference in New Issue
Block a user