Azure / azure-storage-python

Microsoft Azure Storage Library for Python
https://azure-storage.readthedocs.io
MIT License
339 stars 241 forks source link

All of the rows can be fetched even if without continuation token #531

Closed imeya closed 5 years ago

imeya commented 5 years ago

as per this link, only 1000 rows can be fetched if without continuation token. But even if I just use this line of code(without continuation token):

count=0
entities = table_service.query_entities(table,filter='PartitionKey eq 'xxx' '')
for entity in entities:
      count = count +1

print(count)

I can fetch all of the rows (more than 10000 rows), so I wonder if this is expected(without continuation token)? or I misunderstand it?

rickle-msft commented 5 years ago

Hi, @imeya. Per our issue template, please go here for all table related questions: https://github.com/Azure/azure-cosmosdb-python.