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

Method Build

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

Source from the content-addressed store, hash-verified

1434}
1435
1436Status FileReaderBuilder::Build(std::unique_ptr<FileReader>* out) {
1437 ARROW_ASSIGN_OR_RAISE(*out,
1438 FileReader::Make(pool_, std::move(raw_reader_), properties_));
1439 return Status::OK();
1440}
1441
1442Result<std::unique_ptr<FileReader>> FileReaderBuilder::Build() {
1443 return FileReader::Make(pool_, std::move(raw_reader_), properties_);

Callers 15

TestWriteOffsetIndexFunction · 0.45
TESTFunction · 0.45
ReadTableFromBufferFunction · 0.45
OpenFileFunction · 0.45
DoRoundtripFunction · 0.45
DoSimpleRoundtripFunction · 0.45
DoRoundTripWithBatchesFunction · 0.45
ReaderFromBufferMethod · 0.45
TestGetRecordBatchReaderFunction · 0.45
TESTFunction · 0.45
DoNestedValidateFunction · 0.45

Calls 3

ARROW_ASSIGN_OR_RAISEFunction · 0.70
MakeFunction · 0.50
OKFunction · 0.50

Tested by 14

TestWriteOffsetIndexFunction · 0.36
TESTFunction · 0.36
ReadTableFromBufferFunction · 0.36
DoRoundtripFunction · 0.36
DoSimpleRoundtripFunction · 0.36
DoRoundTripWithBatchesFunction · 0.36
ReaderFromBufferMethod · 0.36
TestGetRecordBatchReaderFunction · 0.36
TESTFunction · 0.36
DoNestedValidateFunction · 0.36
GetReaderMethod · 0.36