We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39c9737 commit 0399039Copy full SHA for 0399039
cpp/src/parquet/arrow/reader.cc
@@ -1350,9 +1350,8 @@ Status FileReader::Make(::arrow::MemoryPool* pool,
1350
Status FileReader::Make(::arrow::MemoryPool* pool,
1351
std::unique_ptr<ParquetFileReader> reader,
1352
std::unique_ptr<FileReader>* out) {
1353
- ARROW_ASSIGN_OR_RAISE(auto result,
+ ARROW_ASSIGN_OR_RAISE(*out,
1354
Make(pool, std::move(reader), default_arrow_reader_properties()));
1355
- *out = std::move(result);
1356
return Status::OK();
1357
}
1358
0 commit comments