From f1c4e81b72693fd1d327aa955bee80a4bc2a0510 Mon Sep 17 00:00:00 2001 From: Gary Elliott Date: Mon, 19 Jun 2017 12:04:00 -0400 Subject: [PATCH] Add sentence about row ordering (#3504) I'm not sure if this is the best place for this, but we want to make sure it's documented that rows are returned in row key order. --- bigtable/google/cloud/bigtable/row_data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bigtable/google/cloud/bigtable/row_data.py b/bigtable/google/cloud/bigtable/row_data.py index 60fc1f0ef1e8c..78179db25c4e5 100644 --- a/bigtable/google/cloud/bigtable/row_data.py +++ b/bigtable/google/cloud/bigtable/row_data.py @@ -256,7 +256,7 @@ def consume_next(self): """Consume the next ``ReadRowsResponse`` from the stream. Parse the response and its chunks into a new/existing row in - :attr:`_rows` + :attr:`_rows`. Rows are returned in order by row key. """ response = six.next(self._response_iterator) self._counter += 1