| 897 | } // namespace |
| 898 | |
| 899 | Result<std::shared_ptr<Array>> MakeArrayOfNull(const std::shared_ptr<DataType>& type, |
| 900 | int64_t length, MemoryPool* pool) { |
| 901 | ARROW_ASSIGN_OR_RAISE(auto data, NullArrayFactory(pool, type, length).Create()); |
| 902 | return MakeArray(data); |
| 903 | } |
| 904 | |
| 905 | Result<std::shared_ptr<Array>> MakeArrayFromScalar(const Scalar& scalar, int64_t length, |
| 906 | MemoryPool* pool) { |