Skip to content
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

Remove null mask and null count from column_view constructors #13311

Merged
merged 7 commits into from
May 16, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions cpp/include/cudf/column/column_view.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ class column_view_base {
size_type size,
void const* data,
bitmask_type const* null_mask = nullptr,
size_type null_count = UNKNOWN_NULL_COUNT,
size_type null_count = 0,
vyasr marked this conversation as resolved.
Show resolved Hide resolved
size_type offset = 0);
};

Expand Down Expand Up @@ -385,7 +385,7 @@ class column_view : public detail::column_view_base {
size_type size,
void const* data,
bitmask_type const* null_mask = nullptr,
size_type null_count = UNKNOWN_NULL_COUNT,
size_type null_count = 0,
size_type offset = 0,
std::vector<column_view> const& children = {});

Expand Down Expand Up @@ -540,7 +540,7 @@ class mutable_column_view : public detail::column_view_base {
size_type size,
void* data,
bitmask_type* null_mask = nullptr,
size_type null_count = cudf::UNKNOWN_NULL_COUNT,
size_type null_count = 0,
size_type offset = 0,
std::vector<mutable_column_view> const& children = {});

Expand Down