| 455 | } |
| 456 | |
| 457 | std::shared_ptr<Array> RandomArrayGenerator::Decimal128(std::shared_ptr<DataType> type, |
| 458 | int64_t size, |
| 459 | double null_probability, |
| 460 | int64_t alignment, |
| 461 | MemoryPool* memory_pool) { |
| 462 | DecimalGenerator<Decimal128Type> gen{type, this}; |
| 463 | return gen.MakeRandomArray(size, null_probability, alignment, memory_pool); |
| 464 | } |
| 465 | |
| 466 | std::shared_ptr<Array> RandomArrayGenerator::Decimal256(std::shared_ptr<DataType> type, |
| 467 | int64_t size, |
nothing calls this directly
no test coverage detected