-
Notifications
You must be signed in to change notification settings - Fork 287
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
*: fix deadlock in new processor (#1987) #2017
*: fix deadlock in new processor (#1987) #2017
Conversation
Signed-off-by: ti-chi-bot <ti-community-prow-bot@tidb.io>
[REVIEW NOTIFICATION] This pull request has been approved by:
To complete the pull request process, please ask the reviewers in the list to review by filling The full list of commands accepted by this bot can be found here. Reviewer can indicate their review by submitting an approval review. |
please resolve conflicts @liuzix |
/run-all-tests |
Codecov Report
@@ Coverage Diff @@
## release-4.0 #2017 +/- ##
===================================================
+ Coverage 53.7661% 55.1474% +1.3813%
===================================================
Files 153 164 +11
Lines 15958 19466 +3508
===================================================
+ Hits 8580 10735 +2155
- Misses 6475 7717 +1242
- Partials 903 1014 +111 |
/merge |
@lonng: In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the ti-community-infra/tichi repository. |
/merge |
This pull request has been accepted and is ready to merge. Commit hash: 472b2ab
|
/run-kafka-integration-tests |
/run-kafka-integration-test |
/run-kafka-tests |
1 similar comment
/run-kafka-tests |
@ti-chi-bot: Your PR was out of date, I have automatically updated it for you. At the same time I will also trigger all tests for you: /run-all-tests If the CI test fails, you just re-trigger the test that failed and the bot will merge the PR for you after the CI passes. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the ti-community-infra/tichi repository. |
Problem: With the version upgrade, on the new version of MySQL Cluster, the query results of many system commands will display some new columns. These new columns show new features or information of MySQL. In general, it is recommended to provide backward compatibility of system commands (e.g., show xxx) rather than hard-coded return value format (i.e., limiting the number of returned columns). For DM, there are some commands that are difficult to backward-compatible: (1) SHOW MASTER STATUS (2) SHOW SLAVE HOSTS (3) SHOW BINARY LOGS Fix: Through the reflection mechanism, we only take the value of the required corresponding column and do not limit the number of returned columns. This patch removes the limit on the number of columns returned by the 'show slave hosts' command. ref pingcap#2017
This is an automated cherry-pick of #1987
What problem does this PR solve?
What is changed and how it works?
AddEntry
.Check List
Tests
Side effects
Related changes
Release note