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

Method Load

cpp/src/arrow/ipc/reader.cc:228–237  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

226 }
227
228 Status Load(const Field* field, ArrayData* out) {
229 if (max_recursion_depth_ <= 0) {
230 return Status::Invalid("Max recursion depth reached");
231 }
232
233 field_ = field;
234 out_ = out;
235 out_->type = field_->type();
236 return LoadType(*field_->type());
237 }
238
239 Status SkipField(const Field* field) {
240 ArrayData dummy;

Callers 4

LoadRecordBatchSubsetFunction · 0.45
ReadDictionaryFunction · 0.45
LoadFieldsSubsetMethod · 0.45
CalculateLoadRequestMethod · 0.45

Calls 2

InvalidFunction · 0.50
typeMethod · 0.45

Tested by

no test coverage detected