-
Notifications
You must be signed in to change notification settings - Fork 1.9k
[branch-51] Backport Fix for Creating Null FixedSizeBinary Arrays to DF 51Branch #19017
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
[branch-51] Backport Fix for Creating Null FixedSizeBinary Arrays to DF 51Branch #19017
Conversation
…ary in ScalarValue::to_array_of_size
…SizeBinaryArray in `ScalarValue::to_array_of_size`
|
Apparently, the test failed with |
Done |
alamb
left a comment
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.
Thank you @tobixdev
|
Thanks @alamb ! Any idea what I could do to make the space error go away? 🤔 |
There is code to clean up pre-installed nonsense on main: datafusion/.github/workflows/rust.yml Lines 277 to 286 in 6425e40
That got added in #18709 by @Jefffrey @tobixdev would you mind making a backport to branch-51 with that PR ? I can do it as well, but I can't approve my own PRs so if you make one I can approve/merge it. |
|
Thanks for the info! I'll do it tomorrow. 👍 |
|
No worries -- I made it this afternoon (my time) in case another committer has time to review it over the night |
…on (#18709) (#19037) ## Which issue does this PR close? - part of #18843 - Backports #18709 from @Jefffrey ## Rationale for this change @tobixdev is hitting a CI failure due to out of space on a different PR: - #19017 (comment) @Jefffrey fixed this on main with - #18709 So let's backport that change to branch-51 ## What changes are included in this PR? - Backport #18709 to branch-51 ## Are these changes tested? by ci <!-- We typically require tests for all PRs in order to: 1. Prevent the code from being accidentally broken by subsequent changes 2. Serve as another way to document the expected behavior of the code If tests are not included in your PR, please explain why (for example, are they covered by existing tests)? --> ## Are there any user-facing changes? no Co-authored-by: Jeffrey Vo <jeffrey.vo.australia@gmail.com>
|
Thanks @alamb ! I've updated the branch. The build should pass now. |
|
Thanks @tobixdev ! |
Which issue does this PR close?
Backports #18903 to DF 51 branch
Rationale for this change
Fix the bug in a future 51.1.0 release (#18843)
What changes are included in this PR?
Same as in #18903
Are these changes tested?
Yes.
Are there any user-facing changes?
Yes, fix the original bug and create a non-zero sized values buffer in the case that exhibits the bug.