-
Notifications
You must be signed in to change notification settings - Fork 188
Conversation
/run-all-tests |
Codecov Report
@@ Coverage Diff @@
## master #606 +/- ##
================================================
+ Coverage 57.8187% 57.8518% +0.0331%
================================================
Files 201 201
Lines 20291 20371 +80
================================================
+ Hits 11732 11785 +53
- Misses 7431 7455 +24
- Partials 1128 1131 +3 |
@WangXiangUSTC @lichunzhu PTAL |
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.
Rest LGTM
return strings.Join(values, ",") | ||
|
||
var buf strings.Builder | ||
buf.Grow(1024) |
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.
Can we estimate the size? If it's too hard, I think current implemention is also okay.
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.
a little complex to estimate the size (it may make the performance worse)
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
What problem does this PR solve?
improve performance as we did in release-1.0 branch.
What is changed and how it works?
Check List
Tests
Code changes
Side effects
Related changes