在 BatchWriteRow 操作中,表示对一个表进行写入的结果。

数据结构

message TableInBatchWriteRowResponse {
    required string table_name = 1;
    repeated RowInBatchWriteRowResponse put_rows = 2;
    repeated RowInBatchWriteRowResponse update_rows = 3;
    repeated RowInBatchWriteRowResponse delete_rows = 4;
}
table_name:
  • 类型:string

  • 描述:该表的表名。

put_rows:
update_rows:
delete_rows:

相关操作

BatchWriteRow