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

Method SkipField

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

Source from the content-addressed store, hash-verified

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