Skip to content

Commit

Permalink
null_at
Browse files Browse the repository at this point in the history
  • Loading branch information
vuule committed Dec 17, 2021
1 parent d6d55dd commit 6b6e1c8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cpp/tests/io/orc_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -548,8 +548,8 @@ TEST_F(OrcWriterTest, SlicedTable)
list_col<int64_t> col4{
{9, 8}, {7, 6, 5}, {}, {4}, {3, 2, 1, 0}, {20, 21, 22, 23, 24}, {}, {66, 666}};

int16_col ages_col{{48, 27, 25, 31, 351, 351, 29, 15}, {1, 1, 1, 1, 1, 0, 1, 1}};
struct_col col5{{ages_col}, {1, 1, 1, 1, 0, 1, 1, 1}};
int16_col ages_col{{48, 27, 25, 31, 351, 351, 29, 15}, cudf::test::iterators::null_at(5)};
struct_col col5{{ages_col}, cudf::test::iterators::null_at(4)};

table_view expected({col0, col1, col2, col3, col4, col5});

Expand Down Expand Up @@ -634,7 +634,7 @@ TEST_F(OrcWriterTest, negTimestampsNano)

TEST_F(OrcWriterTest, Slice)
{
int32_col col{{1, 2, 3, 4, 5}, {true, true, true, false, true}};
int32_col col{{1, 2, 3, 4, 5}, cudf::test::iterators::null_at(3)};
std::vector<cudf::size_type> indices{2, 5};
std::vector<cudf::column_view> result = cudf::slice(col, indices);
cudf::table_view tbl{result};
Expand Down

0 comments on commit 6b6e1c8

Please sign in to comment.