在BatchGetRow操作的返回訊息中表示一行資料。
資料結構
message RowInBatchGetRowResponse {
required bool is_ok = 1 [default = true];
optional Error error = 2;
optional ConsumedCapacity consumed = 3;
optional bytes row = 4;
optional bytes next_token = 5;
}
名稱 | 類型 | 是否必選 | 描述 |
is_ok | bool | 是 | 該行操作是否成功。
|
error | 否 | 該行操作的錯誤資訊。 | |
consumed | 否 | 該行操作消耗的服務能力單元。 | |
row | bytes | 否 | 讀取到的資料,由Plainbuffer編碼,詳見Plainbuffe編碼。 如果該行不存在,則資料為空白。 |
next_token | bytes | 否 | 寬行讀取時,下一次讀取的起始位置,暫不可用。 |