From fcccf6525c842db5701615919d380ae8af7f12c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20Swe=C3=B1a?= Date: Wed, 3 Sep 2025 19:28:27 +0000 Subject: [PATCH] fix: remove warning for slot_millis_sum This warning is no longer relevant when bigframes is used with the latest google-cloud-bigquery. Follow-up to internal issue b/432238967 --- bigframes/session/__init__.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/bigframes/session/__init__.py b/bigframes/session/__init__.py index 432e73159a..df67e64e9e 100644 --- a/bigframes/session/__init__.py +++ b/bigframes/session/__init__.py @@ -345,15 +345,6 @@ def bytes_processed_sum(self): @property def slot_millis_sum(self): """The sum of all slot time used by bigquery jobs in this session.""" - if not bigframes.options._allow_large_results: - msg = bfe.format_message( - "Queries executed with `allow_large_results=False` within the session will not " - "have their slot milliseconds counted in this sum. If you need precise slot " - "milliseconds information, query the `INFORMATION_SCHEMA` tables " - "to get relevant metrics.", - ) - warnings.warn(msg, UserWarning) - return self._metrics.slot_millis @property