| 743 | // Will be called when there is no nulls in the input. |
| 744 | template <typename TOut, typename TIn> |
| 745 | void callNullFree(TOut& out, const TIn& input) { |
| 746 | out.add_items(std::vector<int64_t>{1, 2, 3}); |
| 747 | out.add_items(input); |
| 748 | out.add_items(input); |
| 749 | } |
| 750 | }; |
| 751 | |
| 752 | TEST_F(ArrayWriterTest, addItems) { |
no test coverage detected