-
Notifications
You must be signed in to change notification settings - Fork 5.9k
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
ddl: support altering the other charset to utf8 or utf8mb4 #8037
Conversation
Please resolve the conflicts. |
Ci will be fixed, after the pr pingcap/parser#14 merged. |
Please make sure the change works |
…yao/tidb into support_change_charset_utf8
@zimulala PTAL |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Mostly LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
@zimulala PTAL |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
/run-all-tests |
/run-common-test -tidb-test=pr/684 |
1 similar comment
/run-common-test -tidb-test=pr/684 |
/run-integration-ddl-test -tidb-test=pr/684 |
/run-integration-common-test -tidb-test=pr/684 |
/run-integration-compatibility-test -tidb-test=pr/684 |
What problem does this PR solve?
fix #7920.
Support changing the other charset to utf8 or utf8mb4.
Rules is:
Before this PR,
alter table charset
take no effects, we just parse it and ignore, in this PR, we change the charset and collate of tableInfo in the infoSchema.Tests
Code changes
Side effects
Related changes
This change is