Closed
Description
Hey guys, having a problem with the following code:
client = bigquery.Client.from_service_account_json(google_secrets_file)
query = client.run_sync_query(query_sql_string)
query.allow_large_results = True
query.use_query_cache = False
query.run()
response = query.fetch_data()
all large queries seem to return exactly 87500 rows (even if I export to an interim table first and select * on them). I can't see this number anywhere in the library or the documentation, so have no idea where this limit comes from or how to proceed!