MCPcopy Create free account
hub / github.com/apache/arrow / AssertDropNullArrays

Function AssertDropNullArrays

cpp/src/arrow/compute/kernels/vector_selection_test.cc:2329–2334  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2327// DropNull tests
2328
2329void AssertDropNullArrays(const std::shared_ptr<Array>& values,
2330 const std::shared_ptr<Array>& expected) {
2331 ASSERT_OK_AND_ASSIGN(std::shared_ptr<Array> actual, DropNull(*values));
2332 ValidateOutput(actual);
2333 AssertArraysEqual(*expected, *actual, /*verbose=*/true);
2334}
2335
2336Status DropNullJSON(const std::shared_ptr<DataType>& type, const std::string& values,
2337 std::shared_ptr<Array>* out) {

Callers 1

Calls 4

DropNullFunction · 0.85
ValidateOutputFunction · 0.85
AssertArraysEqualFunction · 0.85
ASSERT_OK_AND_ASSIGNFunction · 0.70

Tested by

no test coverage detected