Skip to content

Commit

Permalink
Update indexes.rst
Browse files Browse the repository at this point in the history
  • Loading branch information
Ilya Konstantinov committed May 17, 2019
1 parent efa8ead commit 32f12fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/indexes.rst
Expand Up @@ -139,7 +139,7 @@ of the iterator:
...
return results.last_evaluated_key
The ``last_evaluated_key`` is effectively the key attributes of the last iterated item; the next returned items will be the items following it. For index queries, the returned last_evaluated_key will contain both the table's hash/range keys and the indexes hash/range keys. This is due to the fact that DynamoDB indexes have no uniqueness constraint, i.e. the same hash/range pair can map to multiple items. For the example above, the ``last_evaluated_key`` will look like:
The ``last_evaluated_key`` is effectively the key attributes of the last iterated item; the next returned items will be the items following it. For index queries, the returned ``last_evaluated_key`` will contain both the table's hash/range keys and the indexes hash/range keys. This is due to the fact that DynamoDB indexes have no uniqueness constraint, i.e. the same hash/range pair can map to multiple items. For the example above, the ``last_evaluated_key`` will look like:

.. code-block:: python
Expand Down

0 comments on commit 32f12fc

Please sign in to comment.