From 75e1a93fbb46c8095caa6129e2ce22bfa7c6045c Mon Sep 17 00:00:00 2001 From: Gary Elliott Date: Wed, 14 Jun 2017 21:44:17 -0400 Subject: [PATCH] Add sentence about row ordering 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 60fc1f0ef1e8..78179db25c4e 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