-
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: Improve the aesthetics of code review #6130
executor: Improve the aesthetics of code review #6130
Conversation
@@ -357,8 +357,8 @@ func (s *testSuite) TestGroupConcatAggr(c *C) { | |||
result = tk.MustQuery("select id, group_concat(name SEPARATOR ',') from test group by id") | |||
result.Check(testkit.Rows("1 10,20,30", "2 20", "3 200,500")) | |||
|
|||
result = tk.MustQuery("select id, group_concat(name SEPARATOR '%') from test group by id") | |||
result.Check(testkit.Rows("1 10%20%30", "2 20", "3 200%500")) | |||
result = tk.MustQuery(`select id, group_concat(name SEPARATOR '%') from test group by id`) |
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.
maybe we should change all the " to ` in other MustQuery
function calls ?
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.
We can do that step by step.
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.
OK, Is MustExec/Exec/...
should also be modified?
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.
Maybe I should amend it so that when we change this issue, we also change the other items of this file?
e.g MustExec
,Exec
, MustQuery
LGTM |
executor: Improve the aesthetics of code review pingcap#6130
/run-all-tests |
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
No description provided.