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

Method FragmentReadahead

cpp/src/arrow/dataset/scanner.cc:973–980  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

971}
972
973Status ScannerBuilder::FragmentReadahead(int32_t fragment_readahead) {
974 if (fragment_readahead < 0) {
975 return Status::Invalid("FragmentReadahead must be greater than or equal 0, got ",
976 fragment_readahead);
977 }
978 scan_options_->fragment_readahead = fragment_readahead;
979 return Status::OK();
980}
981
982Status ScannerBuilder::Pool(MemoryPool* pool) {
983 scan_options_->pool = pool;

Callers 2

BatchesMethod · 0.80
MakeScannerMethod · 0.80

Calls 2

InvalidFunction · 0.50
OKFunction · 0.50

Tested by 2

BatchesMethod · 0.64
MakeScannerMethod · 0.64