Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

quoted character set value is not supported #8455

Closed
fanyang01 opened this issue Oct 16, 2024 · 2 comments · Fixed by dolthub/vitess#371
Closed

quoted character set value is not supported #8455

fanyang01 opened this issue Oct 16, 2024 · 2 comments · Fixed by dolthub/vitess#371
Assignees
Labels
bug Something isn't working correctness We don't return the same result as MySQL customer issue

Comments

@fanyang01
Copy link

In Dolt:

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)
@timsehn timsehn added bug Something isn't working correctness We don't return the same result as MySQL labels Oct 16, 2024
@timsehn
Copy link
Contributor

timsehn commented Oct 16, 2024

We'll get this fixed today.

@jycor
Copy link
Contributor

jycor commented Oct 16, 2024

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!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working correctness We don't return the same result as MySQL customer issue
Projects
None yet
Development

Successfully merging a pull request may close this issue.

4 participants