| 125 | BatchMutation* TableImpl::NewBatchMutation() { return new BatchMutationImpl(this); } |
| 126 | |
| 127 | RowReader* TableImpl::NewRowReader(const std::string& row_key) { |
| 128 | RowReaderImpl* row_rd = new RowReaderImpl(this, row_key); |
| 129 | return row_rd; |
| 130 | } |
| 131 | |
| 132 | void TableImpl::Put(RowMutation* row_mu) { ApplyMutation(row_mu); } |
| 133 |
no outgoing calls