We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 590fb30 commit 1a7f859Copy full SHA for 1a7f859
bigframes/display/anywidget.py
@@ -92,6 +92,7 @@ def __init__(self, dataframe: bigframes.dataframe.DataFrame):
92
# metadata about how many results there were. Use that to avoid
93
# doing an extra COUNT(*) query that `len(...)` would do.
94
self._batches = self._dataframe.to_pandas_batches(page_size=self.page_size)
95
+ # TODO (shuowei): total_rows=None Incorrectly Defaults to 0. b/452747934
96
self.row_count = self._batches.total_rows or 0
97
98
self._set_table_html()
0 commit comments