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 bd56992 commit 971ee33Copy full SHA for 971ee33
bigframes/dataframe.py
@@ -785,13 +785,13 @@ def __repr__(self) -> str:
785
return object.__repr__(self)
786
787
opts = bigframes.options.display
788
+ max_results = opts.max_rows
789
if opts.repr_mode == "deferred":
790
return formatter.repr_query_job(self._compute_dry_run())
791
792
# TODO(swast): pass max_columns and get the true column count back. Maybe
793
# get 1 more column than we have requested so that pandas can add the
794
# ... for us?
- max_results = opts.max_rows
795
pandas_df, row_count, query_job = self._block.retrieve_repr_request_results(
796
max_results
797
)
0 commit comments