Commit fa2dfa01 authored by unknown's avatar unknown

sql_lex.cc:

  Move all charset recoding to the same place


sql/sql_lex.cc:
  Move all charset recoding to the same place
parent bfaa1d9a
...@@ -359,8 +359,6 @@ static char *get_text(LEX *lex) ...@@ -359,8 +359,6 @@ static char *get_text(LEX *lex)
*to=0; *to=0;
lex->yytoklen=(uint) (to-start); lex->yytoklen=(uint) (to-start);
} }
if (lex->convert_set)
lex->convert_set->convert((char*) start,lex->yytoklen);
return (char*) start; return (char*) start;
} }
} }
...@@ -849,6 +847,8 @@ int yylex(void *arg, void *yythd) ...@@ -849,6 +847,8 @@ int yylex(void *arg, void *yythd)
break; break;
} }
yylval->lex_str.length=lex->yytoklen; yylval->lex_str.length=lex->yytoklen;
if (lex->convert_set)
lex->convert_set->convert((char*) yylval->lex_str.str,lex->yytoklen);
return(TEXT_STRING); return(TEXT_STRING);
case STATE_COMMENT: // Comment case STATE_COMMENT: // Comment
......
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