Return the number of bytes left in the range for this stream.
| 140 | |
| 141 | /// Return the number of bytes left in the range for this stream. |
| 142 | int64_t bytes_left() { return scan_range_->bytes_to_read() - total_bytes_returned_; } |
| 143 | |
| 144 | /// If true, all bytes in this scan range have been returned from this ScannerContext |
| 145 | /// to callers or we hit eof before reaching the end of the scan range. Callers can |
no test coverage detected