Reranko05 commented on PR #49951:
URL: https://github.com/apache/arrow/pull/49951#issuecomment-4738018198
```
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) {
```
@kou I checked the lint failure locally. The clang-format issue reported in
CI is in `cpp/src/parquet/types_test.cc`, which is not modified by this PR.
I also ran :
`python -m pre_commit run clang-format --files <files>`
which passes locally.
Could this be an unrelated formatting issue in the CI checkout?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]