-
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
infoschema: migrate dataForProcesslist
from package infoschema
to executor
#15340
Conversation
Codecov Report
@@ Coverage Diff @@
## master #15340 +/- ##
===========================================
Coverage 80.6811% 80.6811%
===========================================
Files 502 502
Lines 135360 135360
===========================================
Hits 109210 109210
Misses 17695 17695
Partials 8455 8455 |
Thanks for your pull request. Pick up issue #15020 and reopen this PR |
Thanks for your contribution. If your PR get merged, you will be rewarded 50 points. |
infoschema/tables_test.go
Outdated
@@ -743,76 +740,6 @@ func (s *testTableSuite) TestForTableTiFlashReplica(c *C) { | |||
tk.MustQuery("select TABLE_SCHEMA,TABLE_NAME,REPLICA_COUNT,LOCATION_LABELS,AVAILABLE, PROGRESS from information_schema.tiflash_replica").Check(testkit.Rows("test t 2 a,b 1 1")) | |||
} | |||
|
|||
func (s *testClusterTableSuite) TestForClusterServerInfo(c *C) { |
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.
Why remove the test cases?
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.
By mistake, sorry! Just wondering why this unit test failed when I run go test
under this package infoshema
.
3757e2b
to
918df7d
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
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
/merge |
/run-all-tests |
@hsqlu merge failed. |
/run-all-tests |
Hi, @hsqlu, thanks for your contribution, please fix the lint below:
|
e4fda54
to
530dc8b
Compare
/run-all-tests |
Resloved. PTAL Thanks! |
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
/merge |
/run-all-tests |
Congratulation! You have awarded a badge for usability challenge program! Please fill the form to get your reward! http://tidbcommunity.mikecrm.com/QMCv4QL |
UCP: #15020
What problem does this PR solve?
fixes #15020
What is changed and how it works?
move
dataForProcesslist
from infoschema to executor.move
dataForClusterProcesslist
from infoschema to executor.Check List
Tests
Code changes