We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
_QueryResults.rows()
1 parent be49612 commit 8f4c0b8Copy 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
if total_rows is not None:
@@ -858,7 +858,7 @@ def rows(self):
858
859
860
Optional[List[google.cloud.bigquery.table.Row]]:
861
- Fields describing the schema (None until set by the server).
+ Rows containing the results of the query.
862
863
return _rows_from_json(self._properties.get("rows", ()), self.schema)
864
0 commit comments