| 58 | } |
| 59 | |
| 60 | std::shared_ptr<arrow::Array> ConstantArrayGenerator::UInt8(int64_t size, uint8_t value) { |
| 61 | return ConstantArray<UInt8Type>(size, value); |
| 62 | } |
| 63 | |
| 64 | std::shared_ptr<arrow::Array> ConstantArrayGenerator::Int8(int64_t size, int8_t value) { |
| 65 | return ConstantArray<Int8Type>(size, value); |
no outgoing calls