This is an automated email from the ASF dual-hosted git repository.
rok pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/main by this push:
new 303d077720 MINOR: [C++] Fix lint errors (#48173)
303d077720 is described below
commit 303d077720f17713a191d53e25a88046645fa3a4
Author: Rok Mihevc <[email protected]>
AuthorDate: Wed Nov 19 14:33:23 2025 +0100
MINOR: [C++] Fix lint errors (#48173)
### Rationale for this change
A C++ linting error was introduced with #40705.
### What changes are included in this PR?
Linter fixed issue in `cpp/examples/arrow/parquet_read_write.cc`
Authored-by: Rok Mihevc <[email protected]>
Signed-off-by: Rok Mihevc <[email protected]>
---
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 b0765e1da6..7db13f360a 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<arrow::io::FileOutputStream> 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();
}