| 446 | } |
| 447 | |
| 448 | std::shared_ptr<Array> RandomArrayGenerator::Decimal64(std::shared_ptr<DataType> type, |
| 449 | int64_t size, |
| 450 | double null_probability, |
| 451 | int64_t alignment, |
| 452 | MemoryPool* memory_pool) { |
| 453 | SmallDecimalGenerator<Decimal64Type> gen{type, this}; |
| 454 | return gen.MakeRandomArray(size, null_probability, alignment, memory_pool); |
| 455 | } |
| 456 | |
| 457 | std::shared_ptr<Array> RandomArrayGenerator::Decimal128(std::shared_ptr<DataType> type, |
| 458 | int64_t size, |
nothing calls this directly
no test coverage detected