From d78a0dff85cace86a0182bf55201f90d4c971eea Mon Sep 17 00:00:00 2001 From: Rok Mihevc Date: Wed, 19 Nov 2025 13:14:02 +0100 Subject: [PATCH] lint --- cpp/examples/arrow/parquet_read_write.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cpp/examples/arrow/parquet_read_write.cc b/cpp/examples/arrow/parquet_read_write.cc index b0765e1da61e..7db13f360aea 100644 --- a/cpp/examples/arrow/parquet_read_write.cc +++ b/cpp/examples/arrow/parquet_read_write.cc @@ -118,9 +118,9 @@ arrow::Status WriteFullFile(std::string path_to_file) { std::shared_ptr outfile; ARROW_ASSIGN_OR_RAISE(outfile, arrow::io::FileOutputStream::Open(path_to_file)); - ARROW_RETURN_NOT_OK(parquet::arrow::WriteTable(*table.get(), - arrow::default_memory_pool(), outfile, - /*chunk_size=*/64*1024, props, arrow_props)); + ARROW_RETURN_NOT_OK( + parquet::arrow::WriteTable(*table.get(), arrow::default_memory_pool(), outfile, + /*chunk_size=*/64 * 1024, props, arrow_props)); return arrow::Status::OK(); }