blob: 9c40c00bb710e239b5cf887b4a9bb9832c6c4659 [file] [log] [blame]
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
#include <gtest/gtest.h>
#include "arrow/compute/api.h"
#include "arrow/compute/kernels/test_util.h"
#include "arrow/result.h"
#include "arrow/testing/gtest_util.h"
namespace arrow {
namespace compute {
TEST(TestVectorNested, ListFlatten) {
for (auto ty : {list(int32()), large_list(int32())}) {
auto input = ArrayFromJSON(ty, "[[0, null, 1], null, [2, 3], []]");
auto expected = ArrayFromJSON(int32(), "[0, null, 1, 2, 3]");
CheckVectorUnary("list_flatten", input, expected);
}
}
TEST(TestVectorNested, ListParentIndices) {
for (auto ty : {list(int32()), large_list(int32())}) {
auto input = ArrayFromJSON(ty, "[[0, null, 1], null, [2, 3], [], [4, 5]]");
auto out_ty = ty->id() == Type::LIST ? int32() : int64();
auto expected = ArrayFromJSON(out_ty, "[0, 0, 0, 2, 2, 4, 4]");
CheckVectorUnary("list_parent_indices", input, expected);
}
// Construct a list with non-empty null slots
auto input = ArrayFromJSON(list(int32()), "[[0, null, 1], [0, 0], [2, 3], [], [4, 5]]");
std::shared_ptr<ArrayData> data = input->data()->Copy();
data->buffers[0] =
(ArrayFromJSON(boolean(), "[true, false, true, true, true]")->data()->buffers[1]);
auto expected = ArrayFromJSON(int32(), "[0, 0, 0, 1, 1, 2, 2, 4, 4]");
CheckVectorUnary("list_parent_indices", data, expected);
}
} // namespace compute
} // namespace arrow