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

Function DoAssertTakeAAA

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

Source from the content-addressed store, hash-verified

1192// Assert helpers for Take tests
1193
1194void DoAssertTakeAAA(const std::shared_ptr<Array>& values,
1195 const std::shared_ptr<Array>& indices,
1196 const std::shared_ptr<Array>& expected) {
1197 ASSERT_OK_AND_ASSIGN(std::shared_ptr<Array> actual, TakeAAA(*values, *indices));
1198 ValidateOutput(actual);
1199 AssertArraysEqual(*expected, *actual, /*verbose=*/true);
1200}
1201
1202void DoCheckTakeAAA(const std::shared_ptr<Array>& values,
1203 const std::shared_ptr<Array>& indices,

Callers 1

DoCheckTakeAAAFunction · 0.85

Calls 4

TakeAAAFunction · 0.85
ValidateOutputFunction · 0.85
AssertArraysEqualFunction · 0.85
ASSERT_OK_AND_ASSIGNFunction · 0.70

Tested by

no test coverage detected