| 437 | } // namespace |
| 438 | |
| 439 | std::shared_ptr<Array> RandomArrayGenerator::Decimal32(std::shared_ptr<DataType> type, |
| 440 | int64_t size, |
| 441 | double null_probability, |
| 442 | int64_t alignment, |
| 443 | MemoryPool* memory_pool) { |
| 444 | SmallDecimalGenerator<Decimal32Type> gen{type, this}; |
| 445 | return gen.MakeRandomArray(size, null_probability, alignment, memory_pool); |
| 446 | } |
| 447 | |
| 448 | std::shared_ptr<Array> RandomArrayGenerator::Decimal64(std::shared_ptr<DataType> type, |
| 449 | int64_t size, |
nothing calls this directly
no test coverage detected