-
Notifications
You must be signed in to change notification settings - Fork 5.8k
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
executor,infoschema: Change column type on information_schema.CLUSTER_INFO #29771
executor,infoschema: Change column type on information_schema.CLUSTER_INFO #29771
Conversation
[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. |
/cc @yzwqf @crazycs520 |
@dveeden: GitHub didn't allow me to request PR reviews from the following users: yzwqf. Note that only pingcap members and repo collaborators can review this PR, and authors cannot review their own PRs. 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 kubernetes/test-infra repository. |
/cc @morgo |
…E from varchar to datetime
98960d2
to
3b7c155
Compare
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. I think the CI failure is unrelated
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.
Is it ok to remove the suffix +08:00
?
I think it is. Do you see any problem with that? |
I'm not sure, maybe we should request other people to review it. |
@wjhuang2016 Any suggestions for additional reviewers? |
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.
Is it possible to create a test case for this PR?
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## master #29771 +/- ##
================================================
+ Coverage 71.1018% 72.6349% +1.5330%
================================================
Files 1365 1389 +24
Lines 404348 414551 +10203
================================================
+ Hits 287499 301109 +13610
+ Misses 96883 94539 -2344
+ Partials 19966 18903 -1063
Flags with carried forward coverage won't be shown. Click here to find out more.
|
/retest |
/test unit-test |
@dveeden: The specified target(s) for
Use 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 kubernetes/test-infra repository. |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: crazycs520, morgo, wjhuang2016 The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
[LGTM Timeline notifier]Timeline:
|
@dveeden: The following tests failed, say
Full PR test history. Your PR dashboard. 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 kubernetes/test-infra repository. I understand the commands that are listed here. |
/retest |
Issue Number: close #45221
Related: #24858
What problem does this PR solve?
The
START_TIME
column ofinformation_schema.CLUSTER_INFO
was aVARCHAR
with values like2021-11-15T07:32:19+01:00
. This changes the column to be a MySQL datetime format.What is changed and how it works?
Check List
Tests
Side effects
Documentation
Release note