| 93 | }; |
| 94 | |
| 95 | RecordBatchIterator RecordBatchSliceIterator(const RecordBatch& batch, |
| 96 | int64_t slice_size) { |
| 97 | SliceIteratorFunctor functor = {&batch, slice_size, /*offset=*/static_cast<int64_t>(0)}; |
| 98 | return RecordBatchIterator(std::move(functor)); |
| 99 | } |
| 100 | |
| 101 | // Counts the number of quotes in s. |
| 102 | int64_t CountQuotes(std::string_view s) { |
no test coverage detected