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

Method SkipField

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

Source from the content-addressed store, hash-verified

237 }
238
239 Status SkipField(const Field* field) {
240 ArrayData dummy;
241 skip_io_ = true;
242 Status status = Load(field, &dummy);
243 skip_io_ = false;
244 // GH-37851: Reset state. Load will set `out_` to `&dummy`, which would
245 // be a dangling pointer.
246 out_ = nullptr;
247 return status;
248 }
249
250 Status GetBuffer(int buffer_index, std::shared_ptr<Buffer>* out) {
251 auto* buffers = metadata_->buffers();

Callers 3

LoadRecordBatchSubsetFunction · 0.80
LoadFieldsSubsetMethod · 0.80
CalculateLoadRequestMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected