From deb14e2e1306f16d794883f8bfc0b7ee3ae08cbb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20Swe=C3=B1a=20=28Swast=29?= Date: Tue, 24 Feb 2026 10:18:22 -0600 Subject: [PATCH] docs: add code sample and docstring for bpd.options.experiments.sql_compiler. Added documentation for the sql_compiler property. --- bigframes/_config/experiment_options.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/bigframes/_config/experiment_options.py b/bigframes/_config/experiment_options.py index 811d6b8bd4..6c51ef6db3 100644 --- a/bigframes/_config/experiment_options.py +++ b/bigframes/_config/experiment_options.py @@ -72,6 +72,13 @@ def ai_operators(self, value: bool): @property def sql_compiler(self) -> Literal["legacy", "stable", "experimental"]: + """Set to 'experimental' to try out the latest in compilation experiments.. + + **Examples:** + + >>> import bigframes.pandas as bpd + >>> bpd.options.experiments.sql_compiler = 'experimental' # doctest: +SKIP + """ return self._sql_compiler @sql_compiler.setter