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