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

Method ValidateFull

cpp/src/arrow/array/array_binary_test.cc:262–267  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

260 }
261
262 Status ValidateFull(int64_t length, std::vector<offset_type> offsets,
263 std::string_view data, int64_t offset = 0) {
264 ArrayType arr(length, Buffer::Wrap(offsets), std::make_shared<Buffer>(data),
265 /*null_bitmap=*/nullptr, /*null_count=*/0, offset);
266 return arr.ValidateFull();
267 }
268
269 Status ValidateFull(const std::string& json) {
270 auto ty = TypeTraits<T>::type_singleton();

Callers 4

TestArrayBasicsMethod · 0.45
MakeBinaryViewArrayFunction · 0.45
DoneMethod · 0.45

Calls 3

WrapFunction · 0.85
ArrayFromJSONFunction · 0.85
type_singletonFunction · 0.50

Tested by

no test coverage detected