From f1297544261e651a4e1df00e975e0e1e1bb782eb Mon Sep 17 00:00:00 2001 From: Junming Chen Date: Mon, 21 Aug 2023 22:14:55 +0800 Subject: [PATCH] lint --- cpp/src/arrow/compute/kernels/scalar_set_lookup_test.cc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/cpp/src/arrow/compute/kernels/scalar_set_lookup_test.cc b/cpp/src/arrow/compute/kernels/scalar_set_lookup_test.cc index 4ffd57a0a9c08..adad7feb642d2 100644 --- a/cpp/src/arrow/compute/kernels/scalar_set_lookup_test.cc +++ b/cpp/src/arrow/compute/kernels/scalar_set_lookup_test.cc @@ -130,8 +130,7 @@ void CheckIsIn(const std::shared_ptr& type, const std::string& input_j void CheckIsInChunked(const std::shared_ptr& input, const std::shared_ptr& value_set, - const std::shared_ptr& expected, - bool skip_nulls) { + const std::shared_ptr& expected, bool skip_nulls) { ASSERT_OK_AND_ASSIGN(Datum actual_datum, IsIn(input, SetLookupOptions(value_set, skip_nulls))); auto actual = actual_datum.chunked_array(); @@ -329,7 +328,7 @@ TEST_F(TestIsInKernel, TimeTimestamp) { CheckIsIn(type, "[1, null, 5, 1, 2]", "[2, 1, null]", "[true, null, null, true, true]", /*null_matching_behavior=*/SetLookupOptions::INCONCLUSIVE); - + // Duplicates in right array CheckIsIn(type, "[1, null, 5, 1, 2]", "[2, 1, 1, null, 2]", "[true, true, false, true, true]", /*skip_nulls=*/false);