mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 10:14:19 +01:00
Code review comments
sql/sql_lex.cc: Fixed parenthese typo, found during code review
This commit is contained in:
parent
1e33b063f0
commit
5ed76763f8
1 changed files with 2 additions and 2 deletions
|
@ -1112,8 +1112,8 @@ Alter_info::Alter_info(const Alter_info &rhs, MEM_ROOT *mem_root)
|
|||
char *skip_rear_comments(CHARSET_INFO *cs, char *begin, char *end)
|
||||
{
|
||||
while (begin < end && (end[-1] == '*' ||
|
||||
end[-1] == '/' || end[-1] == ';') ||
|
||||
my_isspace(cs, end[-1]))
|
||||
end[-1] == '/' || end[-1] == ';' ||
|
||||
my_isspace(cs, end[-1])))
|
||||
end-= 1;
|
||||
return end;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue