fix: allow null data for empty binary and string views during append - #940
Merged
Merged
Conversation
Signed-off-by: Fredrik Fornwall <fredrik@fornwall.net>
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #940 +/- ##
==========================================
+ Coverage 78.16% 78.19% +0.02%
==========================================
Files 106 106
Lines 16842 16843 +1
Branches 1984 1985 +1
==========================================
+ Hits 13165 13170 +5
+ Misses 2443 2439 -4
Partials 1234 1234 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
ArrowBufferView and ArrowStringView allow a null data pointer when their size is zero:
Appending these views to binary-view or string-view arrays currently passes the null pointer to
memcpy, which is undefined behaviour even for a zero-byte copy as flagged by UBSan.Skip the inline copy for empty values to fix that.