diff options
Diffstat (limited to 'sql/mysqld.h')
-rw-r--r-- | sql/mysqld.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sql/mysqld.h b/sql/mysqld.h index c643f3786ef..80e1876a70c 100644 --- a/sql/mysqld.h +++ b/sql/mysqld.h @@ -1,5 +1,5 @@ /* Copyright (c) 2006, 2016, Oracle and/or its affiliates. - Copyright (c) 2010, 2019, MariaDB Corporation. + Copyright (c) 2010, 2020, MariaDB Corporation. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -788,8 +788,7 @@ extern "C" void unireg_clear(int exit_code); inline void table_case_convert(char * name, uint length) { if (lower_case_table_names) - files_charset_info->cset->casedn(files_charset_info, - name, length, name, length); + files_charset_info->casedn(name, length, name, length); } extern void set_server_version(char *buf, size_t size); |