Skip to content

Commit

Permalink
Fix conflicts issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Avogar committed Mar 31, 2023
1 parent c8cfbe2 commit 1f1b3d3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
5 changes: 1 addition & 4 deletions cpp/src/arrow/adapters/orc/adapter.cc
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,6 @@ class ORCFileReader::Impl {
return reader_.get();
}


Status Init() {
int64_t nstripes = reader_->getNumberOfStripes();
stripes_.resize(nstripes);
Expand Down Expand Up @@ -518,9 +517,7 @@ class ORCFileReader::Impl {

Result<std::shared_ptr<RecordBatchReader>> NextStripeReader(int64_t batch_size) {
std::vector<int> empty_vec;
return NextStripeReader(batch_size, empty_vec);
}

return NextStripeReader(batch_size, empty_vec);
}

private:
Expand Down
2 changes: 1 addition & 1 deletion cpp/src/arrow/adapters/orc/adapter.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 1f1b3d3

Please sign in to comment.