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

Method Open

cpp/src/arrow/ipc/feather.cc:714–721  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

712class ReaderV2 : public Reader {
713 public:
714 Status Open(const std::shared_ptr<io::RandomAccessFile>& source,
715 const IpcReadOptions& options) {
716 source_ = source;
717 options_ = options;
718 ARROW_ASSIGN_OR_RAISE(auto reader, RecordBatchFileReader::Open(source_, options_));
719 schema_ = reader->schema();
720 return Status::OK();
721 }
722
723 Status Open(const std::shared_ptr<io::RandomAccessFile>& source) {
724 return Open(source, IpcReadOptions::Defaults());

Callers

nothing calls this directly

Calls 3

OKFunction · 0.50
DefaultsFunction · 0.50
schemaMethod · 0.45

Tested by

no test coverage detected