Closed philiplb closed 6 years ago
Yup, in sql.y:
set_statement:
SET comment_opt charset_or_character_set charset_value force_eof
{
$$ = &Set{Comments: Comments($2), Charset: $4}
}
...
charset_or_character_set:
CHARSET
| CHARACTER SET
| NAMES
charset_or_character_set ($3) does not seem to be stored in the sqlparser.Set type. That should be a easy fix.
This has now been fixed.
Hi, I got another one:
This results only in this output:
The rest is missing?