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

Method Build

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

Source from the content-addressed store, hash-verified

1483}
1484
1485Status FileReaderBuilder::Build(std::unique_ptr<FileReader>* out) {
1486 ARROW_ASSIGN_OR_RAISE(*out,
1487 FileReader::Make(pool_, std::move(raw_reader_), properties_));
1488 return Status::OK();
1489}
1490
1491Result<std::unique_ptr<FileReader>> FileReaderBuilder::Build() {
1492 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