You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
mysql> create table t (s varchar(10) character set'utf8mb4');
ERROR 1105 (HY000): syntax error at position 55 near 'utf8mb4'
mysql> create table t (s varchar(10) character set utf8mb4);
Query OK, 0 rows affected (0.03 sec)
In MySQL:
mysql> create table t (s varchar(10) character set'utf8mb4');
Query OK, 0 rows affected (0.05 sec)
The text was updated successfully, but these errors were encountered:
Hey @fanyang01, thanks for reporting this issue.
The fix has been merged to vitess, and is making its way to dolt.
We'll have a release for you later this week!
In Dolt:
In MySQL:
The text was updated successfully, but these errors were encountered: