| 75 | } |
| 76 | |
| 77 | std::shared_ptr<arrow::Array> ConstantArrayGenerator::UInt32(int64_t size, |
| 78 | uint32_t value) { |
| 79 | return ConstantArray<UInt32Type>(size, value); |
| 80 | } |
| 81 | |
| 82 | std::shared_ptr<arrow::Array> ConstantArrayGenerator::Int32(int64_t size, int32_t value) { |
| 83 | return ConstantArray<Int32Type>(size, value); |
no outgoing calls