Skip to content

Commit

Permalink
add cast
Browse files Browse the repository at this point in the history
  • Loading branch information
wgtmac committed Dec 20, 2024
1 parent c374199 commit 3a58e05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/src/parquet/arrow/size_stats_benchmark.cc
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ void WriteColumn(::benchmark::State& state,
state.ResumeTiming();
ARROW_EXPECT_OK(::parquet::arrow::WriteTable(*table, ::arrow::default_memory_pool(),
output, kRowGroupSize, properties));
state.counters["output_size"] = output->Tell().ValueOrDie();
state.counters["output_size"] = static_cast<double>(output->Tell().ValueOrDie());
}

int64_t bytes_processed = 0;
Expand Down

0 comments on commit 3a58e05

Please sign in to comment.