From 092a93e60cf44937b37adc4ad4fdce2efc0bbcdc Mon Sep 17 00:00:00 2001 From: Dewey Dunnington Date: Thu, 7 Apr 2022 09:46:16 -0300 Subject: [PATCH] Add 'override' --- r/src/compute-exec.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/r/src/compute-exec.cpp b/r/src/compute-exec.cpp index a1a679144da..e7d8df55bb2 100644 --- a/r/src/compute-exec.cpp +++ b/r/src/compute-exec.cpp @@ -301,7 +301,7 @@ class AccumulatingConsumer : public compute::SinkNodeConsumer { public: const std::vector>& batches() { return batches_; } - arrow::Status Init(const std::shared_ptr& schema) { + arrow::Status Init(const std::shared_ptr& schema) override { schema_ = schema; return arrow::Status::OK(); }