mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
sql_table.cc:
Typo fix. Thanks Serg for noticing this.
This commit is contained in:
@ -126,8 +126,8 @@ uint filename_to_tablename(const char *from, char *to, uint to_length)
|
|||||||
uint tablename_to_filename(const char *from, char *to, uint to_length)
|
uint tablename_to_filename(const char *from, char *to, uint to_length)
|
||||||
{
|
{
|
||||||
uint errors;
|
uint errors;
|
||||||
if (from[0] && !strncmp(from, MYSQL50_TABLE_NAME_PREFIX,
|
if (from[0] == '#' && !strncmp(from, MYSQL50_TABLE_NAME_PREFIX,
|
||||||
MYSQL50_TABLE_NAME_PREFIX_LENGTH))
|
MYSQL50_TABLE_NAME_PREFIX_LENGTH))
|
||||||
return my_snprintf(to, to_length, "%s", from + 9);
|
return my_snprintf(to, to_length, "%s", from + 9);
|
||||||
return strconvert(system_charset_info, from,
|
return strconvert(system_charset_info, from,
|
||||||
&my_charset_filename, to, to_length, &errors);
|
&my_charset_filename, to, to_length, &errors);
|
||||||
|
Reference in New Issue
Block a user