mirror of
https://github.com/MariaDB/server.git
synced 2026-05-02 05:05:33 +02: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:
parent
6b52ad9aef
commit
25fb012dcf
3 changed files with 23 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue