-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
exec: Update NULL handling in Vec Copy
The copy method in Vec previously unset ALL NULL values in the destination vector, and then proceeded to set the appropriate NULL values from the source vector, which is incorrect. To address this problem, this commit adds a UnsetNullRange operation to the Nulls object. The operation unsets all null values within an input range, but is unable to smartly/efficiently identify when the vector no longer contains any null values. The best way to address this problem can be left to future PR's and discussion. Release note: None
- Loading branch information
Showing
4 changed files
with
111 additions
and
22 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
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