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

Method ScanContents

cpp/src/parquet/arrow/reader.cc:376–382  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

374 const SchemaManifest& manifest() const override { return manifest_; }
375
376 Status ScanContents(std::vector<int> columns, const int32_t column_batch_size,
377 int64_t* num_rows) override {
378 BEGIN_PARQUET_CATCH_EXCEPTIONS
379 *num_rows = ScanFileContents(columns, column_batch_size, reader_.get());
380 return Status::OK();
381 END_PARQUET_CATCH_EXCEPTIONS
382 }
383
384 MemoryPool* pool_;
385 std::unique_ptr<ParquetFileReader> reader_;

Callers 1

TESTFunction · 0.80

Calls 3

ScanFileContentsFunction · 0.85
OKFunction · 0.50
getMethod · 0.45

Tested by 1

TESTFunction · 0.64