| 917 | } // namespace |
| 918 | |
| 919 | std::shared_ptr<Array> RandomArrayGenerator::Offsets( |
| 920 | int64_t size, int32_t first_offset, int32_t last_offset, double null_probability, |
| 921 | bool force_empty_nulls, int64_t alignment, MemoryPool* memory_pool) { |
| 922 | return GenerateOffsets<NumericArray<Int32Type>>(seed(), size, first_offset, last_offset, |
| 923 | null_probability, force_empty_nulls, |
| 924 | alignment, memory_pool); |
| 925 | } |
| 926 | |
| 927 | std::shared_ptr<Array> RandomArrayGenerator::LargeOffsets( |
| 928 | int64_t size, int64_t first_offset, int64_t last_offset, double null_probability, |
no test coverage detected