应用一次变更, 如果之前调用过 SetCallback() 则本次调用为异步,否则为同步 Args: mutation(class RowMutation): RowMutation对象
(self, mutation)
| 470 | c_uint64(len(rowkey)))) |
| 471 | |
| 472 | def ApplyMutation(self, mutation): |
| 473 | """ 应用一次变更, |
| 474 | 如果之前调用过 SetCallback() 则本次调用为异步,否则为同步 |
| 475 | |
| 476 | Args: |
| 477 | mutation(class RowMutation): RowMutation对象 |
| 478 | """ |
| 479 | lib.tera_table_apply_mutation(self.table, mutation.mutation) |
| 480 | |
| 481 | def NewRowReader(self, rowkey): |
| 482 | """ 生成一个对 rowkey 的RowReader对象(读取一行) |
no outgoing calls
no test coverage detected