| 234 | } // namespace |
| 235 | |
| 236 | Status MakeRandomListArray(const std::shared_ptr<Array>& child_array, int num_lists, |
| 237 | bool include_nulls, MemoryPool* pool, |
| 238 | std::shared_ptr<Array>* out) { |
| 239 | return MakeListArray<ListType>(child_array, num_lists, include_nulls, pool, out); |
| 240 | } |
| 241 | |
| 242 | Status MakeRandomLargeListArray(const std::shared_ptr<Array>& child_array, int num_lists, |
| 243 | bool include_nulls, MemoryPool* pool, |
no outgoing calls
no test coverage detected