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 88115fa commit 425a691Copy full SHA for 425a691
bigframes/session/__init__.py
@@ -345,15 +345,6 @@ def bytes_processed_sum(self):
345
@property
346
def slot_millis_sum(self):
347
"""The sum of all slot time used by bigquery jobs in this session."""
348
- if not bigframes.options._allow_large_results:
349
- msg = bfe.format_message(
350
- "Queries executed with `allow_large_results=False` within the session will not "
351
- "have their slot milliseconds counted in this sum. If you need precise slot "
352
- "milliseconds information, query the `INFORMATION_SCHEMA` tables "
353
- "to get relevant metrics.",
354
- )
355
- warnings.warn(msg, UserWarning)
356
-
357
return self._metrics.slot_millis
358
359
0 commit comments