-
Notifications
You must be signed in to change notification settings - Fork 915
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
Set null-count in linked_column_view conversion operator #13121
Set null-count in linked_column_view conversion operator #13121
Conversation
@@ -0,0 +1,61 @@ | |||
/* |
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.
This code moved from the .hpp file
this->size(), | ||
this->head(), | ||
this->null_mask(), | ||
this->null_count(), |
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.
This is the only change I see aside from the move (and it looks correct). Please re-request review if there is any other substantive change that I missed.
/merge |
Description
Removes the
UNKNOWN_NULL_COUNT
usage in thelinked_column_view::column_view()
conversion operator. The null-count is copied from the parent instance. Thelinked_column_view
class was reworked to move the C++ function definitions from the header file to a new .cpp file.Contributes to: #11968
Checklist