Skip to content

Commit eb5dbf8

Browse files
committed
Fix variable name
1 parent 36a0114 commit eb5dbf8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpp/src/parquet/arrow/reader_writer_benchmark.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ static void BenchmarkReadTable(::benchmark::State& state, const Table& table,
299299
std::unique_ptr<FileReader> arrow_reader;
300300
auto reader_result =
301301
FileReader::Make(::arrow::default_memory_pool(), std::move(reader));
302-
EXIT_NOT_OK(result.status());
302+
EXIT_NOT_OK(reader_result.status());
303303

304304
std::shared_ptr<Table> table;
305305
EXIT_NOT_OK(arrow_reader->ReadTable(&table));

0 commit comments

Comments
 (0)