mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
complier warnings. hide the redundant condition under #ifdef
(because only there it makes any sense)
This commit is contained in:
parent
ce926c90ac
commit
4494c804b8
1 changed files with 2 additions and 2 deletions
|
@ -3537,9 +3537,9 @@ bool check_column_name(const char *name)
|
|||
}
|
||||
#else
|
||||
last_char_is_space= *name==' ';
|
||||
#endif
|
||||
if (*name == NAMES_SEP_CHAR)
|
||||
if (*name == '\377')
|
||||
return 1;
|
||||
#endif
|
||||
name++;
|
||||
name_length++;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue