| 66 | } |
| 67 | |
| 68 | std::shared_ptr<arrow::Array> ConstantArrayGenerator::UInt16(int64_t size, |
| 69 | uint16_t value) { |
| 70 | return ConstantArray<UInt16Type>(size, value); |
| 71 | } |
| 72 | |
| 73 | std::shared_ptr<arrow::Array> ConstantArrayGenerator::Int16(int64_t size, int16_t value) { |
| 74 | return ConstantArray<Int16Type>(size, value); |
no outgoing calls