Commits


Sutou Kouhei authored and Yosuke Shiro committed 0a0423a314a
ARROW-5772: [GLib][Plasma][CUDA] Fix a bug that data can't be got We need to keep a reference to std::shared_ptr<arrow::Buffer> returned by plasma::Client::Get(). If the returned buffer is destructed, we can't get data from the returned buffer. Without this change, we just keep a reference to a std::shared_ptr<arrow::cuda::CudaBuffer> returned from arrow::cuda::CudaBuffer::FromBuffer(). Closes #5004 from kou/glib-plasma-cuda-refer-object and squashes the following commits: a85d9f65e <Sutou Kouhei> ARROW-5772: Fix a bug that data can't be got Authored-by: Sutou Kouhei <kou@clear-code.com> Signed-off-by: Yosuke Shiro <yosuke.shiro615@gmail.com>