| 1994 | } |
| 1995 | |
| 1996 | Result<std::shared_ptr<Array>> ImportDeviceArray(struct ArrowDeviceArray* array, |
| 1997 | std::shared_ptr<DataType> type, |
| 1998 | const DeviceMemoryMapper& mapper) { |
| 1999 | ArrayImporter importer(type); |
| 2000 | RETURN_NOT_OK(importer.Import(array, mapper)); |
| 2001 | return importer.MakeArray(); |
| 2002 | } |
| 2003 | |
| 2004 | Result<std::shared_ptr<Array>> ImportDeviceArray(struct ArrowDeviceArray* array, |
| 2005 | struct ArrowSchema* type, |