This is an automated email from the ASF dual-hosted git repository.
raulcd 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 c3103e235e MINOR: [C++][Parquet] Fix lint failing on main (#50206)
c3103e235e is described below
commit c3103e235ec7193d9867fc969893b77fdbaa6700
Author: Raúl Cumplido <[email protected]>
AuthorDate: Wed Jun 17 14:10:29 2026 +0200
MINOR: [C++][Parquet] Fix lint failing on main (#50206)
### Rationale for this change
Main is currently failing linting due to this PR merge:
- https://github.com/apache/arrow/pull/50025
### What changes are included in this PR?
Just run pre-commit lint on the file causing the issue.
### Are these changes tested?
Yes, see CI job
### Are there any user-facing changes?
No
Authored-by: Raúl Cumplido <[email protected]>
Signed-off-by: Raúl Cumplido <[email protected]>
---
cpp/src/parquet/types_test.cc | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/cpp/src/parquet/types_test.cc b/cpp/src/parquet/types_test.cc
index 14814a18c4..ddb3b37f8f 100644
--- a/cpp/src/parquet/types_test.cc
+++ b/cpp/src/parquet/types_test.cc
@@ -193,8 +193,8 @@ TEST(TypePrinter, StatisticsTypesShortValue) {
FormatStatValue(Type::INT32, std::string("abc"), LogicalType::Decimal(6,
2)));
ASSERT_NO_THROW(
FormatStatValue(Type::INT64, std::string("abcdefg"),
LogicalType::Decimal(18, 4)));
- ASSERT_NO_THROW(
- FormatStatValue(Type::FIXED_LEN_BYTE_ARRAY, std::string("a"),
LogicalType::Float16()));
+ ASSERT_NO_THROW(FormatStatValue(Type::FIXED_LEN_BYTE_ARRAY, std::string("a"),
+ LogicalType::Float16()));
}
TEST(TestInt96Timestamp, Decoding) {