Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
R-JunmingChen committed Nov 15, 2023
1 parent 1cb3381 commit 686670a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion cpp/src/arrow/array/array_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,8 @@ void CheckDictionaryNullCount(const std::shared_ptr<DataType>& dict_type,
const int64_t& expected_logical_null_count,
bool expected_may_have_nulls,
bool expected_may_have_logical_nulls) {
std::shared_ptr<arrow::Array> arr = DictArrayFromJSON(dict_type, input_index_json, input_dictionary_json);
std::shared_ptr<arrow::Array> arr =
DictArrayFromJSON(dict_type, input_index_json, input_dictionary_json);

ASSERT_EQ(expected_null_count, arr->null_count());
ASSERT_EQ(expected_logical_null_count, arr->ComputeLogicalNullCount());
Expand Down
2 changes: 1 addition & 1 deletion cpp/src/arrow/util/dict_util.cc
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,4 @@ int64_t LogicalNullCount(const ArraySpan& span) {
}
}
} // namespace dict_util
} // namespace arrow
} // namespace arrow

0 comments on commit 686670a

Please sign in to comment.