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

Method BatchReadahead

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

Source from the content-addressed store, hash-verified

962}
963
964Status ScannerBuilder::BatchReadahead(int32_t batch_readahead) {
965 if (batch_readahead < 0) {
966 return Status::Invalid("BatchReadahead must be greater than or equal 0, got ",
967 batch_readahead);
968 }
969 scan_options_->batch_readahead = batch_readahead;
970 return Status::OK();
971}
972
973Status ScannerBuilder::FragmentReadahead(int32_t fragment_readahead) {
974 if (fragment_readahead < 0) {

Callers 1

BatchesMethod · 0.80

Calls 2

InvalidFunction · 0.50
OKFunction · 0.50

Tested by 1

BatchesMethod · 0.64