销毁这个table,释放底层资源,以后不得再使用这个对象
(self)
| 452 | self.table = table |
| 453 | |
| 454 | def Close(self): |
| 455 | """ |
| 456 | 销毁这个table,释放底层资源,以后不得再使用这个对象 |
| 457 | """ |
| 458 | lib.tera_table_close(self.table) |
| 459 | |
| 460 | def NewRowMutation(self, rowkey): |
| 461 | """ 生成一个对 rowkey 的RowMutation对象(修改一行) |
no outgoing calls
no test coverage detected