MCPcopy Create free account
hub / github.com/apache/impala / eosr

Method eosr

be/src/exec/scanner-context.h:147–149  ·  view source on GitHub ↗

If true, all bytes in this scan range have been returned from this ScannerContext to callers or we hit eof before reaching the end of the scan range. Callers can continue to call Read*()/Get*()/Skip*() methods on the stream until eof() is true.

Source from the content-addressed store, hash-verified

145 /// to callers or we hit eof before reaching the end of the scan range. Callers can
146 /// continue to call Read*()/Get*()/Skip*() methods on the stream until eof() is true.
147 bool eosr() const {
148 return total_bytes_returned_ >= scan_range_->bytes_to_read() || eof();
149 }
150
151 /// If true, the stream has reached the end of the file. After this is true, any
152 /// Read*()/Get*()/Skip*() methods will not succeed.

Callers 13

GetNextBufferMethod · 0.45
ReadSyncMethod · 0.45
SkipToSyncMethod · 0.45
DecompressStreamMethod · 0.45
ReadAllMethod · 0.45
ReadToBufferMethod · 0.45
ProcessFooterMethod · 0.45
HandleTooEarlyEosMethod · 0.45
ReadPageHeaderMethod · 0.45
GetNextBufferMethod · 0.45
ProcessRangeMethod · 0.45

Calls 1

bytes_to_readMethod · 0.80

Tested by

no test coverage detected