We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
_QueryResults.rows()
1 parentbe49612 commit8f4c0b8Copy full SHA for 8f4c0b8
google/cloud/bigquery/query.py
@@ -815,7 +815,7 @@ def total_rows(self):
815
https://cloud.google.com/bigquery/docs/reference/rest/v2/jobs/query#body.QueryResponse.FIELDS.total_rows
816
817
Returns:
818
- Optional[int}: Count generated on the server (None until set by the server).
+ Optional[int]: Count generated on the server (None until set by the server).
819
"""
820
total_rows=self._properties.get("totalRows")
821
iftotal_rowsisnotNone:
@@ -858,7 +858,7 @@ def rows(self):
858
859
860
Optional[List[google.cloud.bigquery.table.Row]]:
861
-Fields describing theschema (None until set bytheserver).
+Rows containing theresults ofthequery.
862
863
return_rows_from_json(self._properties.get("rows", ()),self.schema)
864