写入(修改)这一行上 ColumnFamily为 , Qualifier为 的cell值为 指定版本(时间戳)为timestamp Args: cf(string): ColumnFamily名 qu(string): Qualifier名 timestamp(long): 版本号/时间戳 value(string): cell的值
(self, cf, qu, timestamp, value)
| 325 | value, c_uint64(len(value))) |
| 326 | |
| 327 | def PutWithTimestamp(self, cf, qu, timestamp, value): |
| 328 | """ 写入(修改)这一行上 |
| 329 | ColumnFamily为<cf>, Qualifier为<qu>的cell值为<value> |
| 330 | 指定版本(时间戳)为timestamp |
| 331 | |
| 332 | Args: |
| 333 | cf(string): ColumnFamily名 |
| 334 | qu(string): Qualifier名 |
| 335 | timestamp(long): 版本号/时间戳 |
| 336 | value(string): cell的值 |
| 337 | """ |
| 338 | lib.tera_row_mutation_put_with_timestamp(self.mutation, cf, |
| 339 | qu, c_uint64(len(qu)), |
| 340 | timestamp, |
| 341 | value, c_uint64(len(value))) |
| 342 | |
| 343 | def DeleteColumnAllVersions(self, cf, qu): |
| 344 | """ 删除这一行上 |
no outgoing calls
no test coverage detected