-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ensure patches don't turn arrays nullable (#1565)
A complicated sequence of events, but patching a primitive array with a filtered sparse array as part of patches could result in the primitive array turning nullable (patches were nullable) even though the filtered sparse array actually contained no nulls... Anyway, I think we should move away from using SparseArray for patches since it's weird to have `SparseArray{fill_value=null}` for non-nullable arrays. We should build something more like Validity where it is explicitly understood.
- Loading branch information
Showing
3 changed files
with
28 additions
and
8 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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