From 3264fdad38b2a1628f296cd574a9dd03f4928aea Mon Sep 17 00:00:00 2001 From: Nikita Mikhaylov Date: Tue, 15 Oct 2024 12:36:40 +0000 Subject: [PATCH] Fix build --- cpp/src/arrow/adapters/orc/adapter.cc | 4 ---- cpp/src/arrow/adapters/orc/adapter.h | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/cpp/src/arrow/adapters/orc/adapter.cc b/cpp/src/arrow/adapters/orc/adapter.cc index 576bd0dada596..c0f8ee7953109 100644 --- a/cpp/src/arrow/adapters/orc/adapter.cc +++ b/cpp/src/arrow/adapters/orc/adapter.cc @@ -553,10 +553,6 @@ class ORCFileReader::Impl { return NextStripeReader(batch_size, empty_vec); } - liborc::Reader* ORCFileReader::GetRawORCReader() { - return impl_->GetRawORCReader(); - } - private: MemoryPool* pool_; std::unique_ptr reader_; diff --git a/cpp/src/arrow/adapters/orc/adapter.h b/cpp/src/arrow/adapters/orc/adapter.h index 6adb3be5ec5b3..fa3df044799c7 100644 --- a/cpp/src/arrow/adapters/orc/adapter.h +++ b/cpp/src/arrow/adapters/orc/adapter.h @@ -30,7 +30,7 @@ #include "arrow/type_fwd.h" #include "arrow/util/macros.h" #include "arrow/util/visibility.h" -#include "arrow/adapters/orc/adapter_util.h" +#include "arrow/adapters/orc/util.h" namespace arrow { namespace adapters {