| 735 | struct AddItemsTestFunc { |
| 736 | template <typename TOut, typename TIn> |
| 737 | void call(TOut& out, const TIn& input) { |
| 738 | out.add_items(input); |
| 739 | out.add_items(input); |
| 740 | out.add_items(std::vector<int64_t>{1, 2, 3}); |
| 741 | } |
| 742 | |
| 743 | // Will be called when there is no nulls in the input. |
| 744 | template <typename TOut, typename TIn> |