| 217 | } |
| 218 | |
| 219 | Status BufferedTupleStream::Init(const string& caller_label, bool pinned) { |
| 220 | if (!pinned) RETURN_IF_ERROR(UnpinStream(UNPIN_ALL_EXCEPT_CURRENT)); |
| 221 | caller_label_ = caller_label; |
| 222 | return Status::OK(); |
| 223 | } |
| 224 | |
| 225 | Status BufferedTupleStream::PrepareForWrite(bool* got_reservation) { |
| 226 | // This must be the first iterator created. |
no test coverage detected