| 84 | } |
| 85 | |
| 86 | std::shared_ptr<arrow::Array> ConstantArrayGenerator::UInt64(int64_t size, |
| 87 | uint64_t value) { |
| 88 | return ConstantArray<UInt64Type>(size, value); |
| 89 | } |
| 90 | |
| 91 | std::shared_ptr<arrow::Array> ConstantArrayGenerator::Int64(int64_t size, int64_t value) { |
| 92 | return ConstantArray<Int64Type>(size, value); |
no outgoing calls