diff options
Diffstat (limited to 'sql/sql_yacc.yy')
-rw-r--r-- | sql/sql_yacc.yy | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_yacc.yy b/sql/sql_yacc.yy index f4c625662b2..8e5fc819bf2 100644 --- a/sql/sql_yacc.yy +++ b/sql/sql_yacc.yy @@ -3778,7 +3778,7 @@ text_literal: { $$ = new Item_string($1.str,$1.length, YYTHD->variables.thd_charset); } | UNDERSCORE_CHARSET TEXT_STRING - { $$ = new Item_string($2.str,$2.length,Lex->charset); } + { $$ = new Item_string($2.str,$2.length,Lex->charset,Item::COER_EXPLICIT); } | text_literal TEXT_STRING { ((Item_string*) $1)->append($2.str,$2.length); }; |