tylertreat/BigQuery-Python

Queries results limited

0ruben opened this issue · 1 comments

Hello, I don't know why but all of my queries are limited it can get maximum 100 000 rows per query
I see that there is a parameter allow_large_results in the original API and I added it in the query method in the dict query_data but it is still limited...

I use the synchronous "query" method.

Do you know what is going on ?

Thank you very much

Now synchronous query method cannot return over 100,000 results at once.
You can fetch remaining rows with using get_query_rows method with offset parameter.