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

Method Load

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

Source from the content-addressed store, hash-verified

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