Skip to content

Commit

Permalink
Merge branch 'fix-nested-struct-with-empty-column' of github.com:shwi…
Browse files Browse the repository at this point in the history
…na/cudf into fix-nested-struct-with-empty-column
  • Loading branch information
shwina committed May 16, 2022
2 parents e98ca17 + 2c1ff40 commit c75dacf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/tests/structs/structs_column_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -634,7 +634,7 @@ TEST_F(StructColumnWrapperTest, TestStructsColumnWithEmptyChild)
int num_rows{empty_col->size()};
vector_of_columns cols;
cols.push_back(std::move(empty_col));
auto mask_vec = std::vector<bool>{true, false false};
auto mask_vec = std::vector<bool>{true, false, false};
auto mask = cudf::test::detail::make_null_mask(mask_vec.begin(), mask_vec.end());
auto structs_col = cudf::make_structs_column(num_rows, std::move(cols), 2, std::move(mask));
EXPECT_NO_THROW(structs_col->view());
Expand Down

0 comments on commit c75dacf

Please sign in to comment.