-
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
executor: deep copy json into partial result #9833
Conversation
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
Failed case in check_dev is a little strange. |
/run-common-test && just test ci.. |
Codecov Report
@@ Coverage Diff @@
## master #9833 +/- ##
================================================
+ Coverage 77.2356% 77.2738% +0.0382%
================================================
Files 405 405
Lines 81667 81668 +1
================================================
+ Hits 63076 63108 +32
+ Misses 13919 13877 -42
- Partials 4672 4683 +11 |
… into bugfix/firstrow-json
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
/run-all-tests |
/run-integration-common-test |
/run-integration-common-test |
What problem does this PR solve?
expression.EvalJSON() only returns a shallow copy of the JSON content in Chunk. We need to deep copy it to avoid dirty memory.
What is changed and how it works?
deep copy JSON into partial result
Check List
Tests
Related changes