Commit 16c76309 authored by Sergei Golubchik's avatar Sergei Golubchik

compiler warnings

parent 7cc2f8de
...@@ -1966,13 +1966,13 @@ static uint32 comment_length(THD *thd, uint32 comment_pos, ...@@ -1966,13 +1966,13 @@ static uint32 comment_length(THD *thd, uint32 comment_pos,
for (; query < query_end; query++) for (; query < query_end; query++)
{ {
if (state_map[*query] == MY_LEX_SKIP) if (state_map[static_cast<uchar>(*query)] == MY_LEX_SKIP)
continue; continue;
if (comment_pos-- == 0) if (comment_pos-- == 0)
break; break;
} }
if (query > query_end - 3 /* comment can't be shorter than 4 */ || if (query > query_end - 3 /* comment can't be shorter than 4 */ ||
state_map[*query] != MY_LEX_LONG_COMMENT || query[1] != '*') state_map[static_cast<uchar>(*query)] != MY_LEX_LONG_COMMENT || query[1] != '*')
return 0; return 0;
*comment_start= query; *comment_start= query;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment