在 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