-
Notifications
You must be signed in to change notification settings - Fork 288
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
syncer(dm) : fix default collation with upstream in create table‘s columns #3769
Merged
Merged
Changes from 11 commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
ee42f75
commit-message: add columns collation by show character set
WizardXiao b4cdec6
Merge branch 'master' of https://github.com/WizardXiao/ticdc into fix…
WizardXiao c809ba0
commit-message: add integration test
WizardXiao f82b248
Merge branch 'master' of https://github.com/WizardXiao/ticdc into fix…
WizardXiao a256072
commit-message: fix collation id which is greater than 255
WizardXiao fb4928d
Merge branch 'master' of https://github.com/WizardXiao/ticdc into fix…
WizardXiao 8324c3b
commit-message: fix integration
WizardXiao 6c3306c
commit-message: update import tidb version
WizardXiao e3dcb0e
commit-message: fix integration test sync_collation
WizardXiao 6b74e37
commit-message: integration sync_collation add wait task
WizardXiao b78078d
commit-message: integration sync_collation add wait task
WizardXiao 9fe5dd2
commit-message: fix comment bugs with out integration test
WizardXiao c3cd3b9
commit-message: fix confict with master
WizardXiao 9656174
commit-message:
WizardXiao aacddb3
commit-message: Simplify integration test
WizardXiao 07843a9
Merge branch 'master' of https://github.com/WizardXiao/ticdc into fix…
WizardXiao ae93b48
commit-message: fix collation check level
WizardXiao 0f634b5
Merge branch 'master' of https://github.com/WizardXiao/ticdc into fix…
WizardXiao 94b8949
commit-message: delete heartbeat in task config
WizardXiao be5e896
Merge branch 'master' of https://github.com/WizardXiao/ticdc into fix…
WizardXiao 05cf2a5
Merge branch 'master' into fix-column-collation
ti-chi-bot eef6a1b
Merge branch 'master' into fix-column-collation
ti-chi-bot File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,3 +10,4 @@ checkpoint_transaction | |
lightning_mode | ||
downstream_diff_index | ||
slow_relay_writer | ||
sync_collation |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Master Configuration. | ||
master-addr = ":8261" | ||
advertise-addr = "127.0.0.1:8261" | ||
auto-compaction-retention = "3s" |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
cc @okJiang we have extra requirements for privilege precheck of incremental phase 😂
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.
How about we checking all INFORMATION_SCHEMA's SELECT privilege?
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.
Does this query from
information_schema.collations
causes dead lock if there are other running tasks at dump phase? /cc @lichunzhu PTALThere 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.
It won't cause a dead lock. But sometimes a query to
information_schema
could be unacceptably slow.