This is an automated email from the ASF dual-hosted git repository.
apitrou 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 13fe5fb7c0 GH-44186: [C++][Parquet] Fix typo in
parquet/column_writer.cc (#40856)
13fe5fb7c0 is described below
commit 13fe5fb7c093c39d4529bc5343d24c4339a19d8a
Author: RoboSchmied <[email protected]>
AuthorDate: Mon Sep 23 10:11:06 2024 +0200
GH-44186: [C++][Parquet] Fix typo in parquet/column_writer.cc (#40856)
fix typo
* GitHub Issue: #44186
Lead-authored-by: RoboSchmied <[email protected]>
Co-authored-by: mwish <[email protected]>
Signed-off-by: Antoine Pitrou <[email protected]>
---
cpp/src/parquet/column_writer.cc | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/cpp/src/parquet/column_writer.cc b/cpp/src/parquet/column_writer.cc
index b7ff712abe..94c301f918 100644
--- a/cpp/src/parquet/column_writer.cc
+++ b/cpp/src/parquet/column_writer.cc
@@ -2272,11 +2272,11 @@ struct SerializeFunctor<
if (array.null_count() == 0) {
for (int64_t i = 0; i < array.length(); i++) {
- out[i] = FixDecimalEndianess<ArrowType::kByteWidth>(array.GetValue(i),
offset);
+ out[i] =
FixDecimalEndianness<ArrowType::kByteWidth>(array.GetValue(i), offset);
}
} else {
for (int64_t i = 0; i < array.length(); i++) {
- out[i] = array.IsValid(i) ? FixDecimalEndianess<ArrowType::kByteWidth>(
+ out[i] = array.IsValid(i) ?
FixDecimalEndianness<ArrowType::kByteWidth>(
array.GetValue(i), offset)
: FixedLenByteArray();
}
@@ -2304,7 +2304,7 @@ struct SerializeFunctor<
}
template <int byte_width>
- FixedLenByteArray FixDecimalEndianess(const uint8_t* in, int64_t offset) {
+ FixedLenByteArray FixDecimalEndianness(const uint8_t* in, int64_t offset) {
const auto* u64_in = reinterpret_cast<const int64_t*>(in);
auto out = reinterpret_cast<const uint8_t*>(scratch) + offset;
static_assert(byte_width == 16 || byte_width == 32,