Skip to content

Commit

Permalink
Add support for reversed scans
Browse files Browse the repository at this point in the history
  • Loading branch information
ron-gal committed Jan 11, 2024
1 parent a968b65 commit 989639e
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions google/cloud/bigtable/table.py
Original file line number Diff line number Diff line change
Expand Up @@ -621,7 +621,9 @@ def read_rows(
method.
:type reversed: bool
:param reversed: (Optional) Whether records should return in descending lexicographical order. The default is False (ascending).
:param reversed: (Optional) Whether records should return in descending
lexicographical order. The default is False
(ascending).
:rtype: :class:`.PartialRowsData`
:returns: A :class:`.PartialRowsData` a generator for consuming
Expand Down Expand Up @@ -1307,8 +1309,9 @@ def _create_row_request(
:param row_set: (Optional) The row set containing multiple row keys and
row_ranges.
:type: reversed: bool
:param reversed: (Optional) Whether records should return in descending lexicographical order. The default is False (ascending).
:param reversed: (Optional) Whether records should return in descending
lexicographical order. The default is False
(ascending).
:rtype: :class:`data_messages_v2_pb2.ReadRowsRequest`
:returns: The ``ReadRowsRequest`` protobuf corresponding to the inputs.
Expand Down

0 comments on commit 989639e

Please sign in to comment.