Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
This repository was archived by the owner on May 7, 2026. It is now read-only.

Commit 867951b

Browse filesBrowse files
authored
docs: add code sample and docstring for bpd.options.experiments.sql_compiler (#2474)
Added documentation for the sql_compiler property. Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly: - [ ] Make sure to open an issue as a [bug/issue](https://github.com/googleapis/python-bigquery-dataframes/issues/new/choose) before writing your code! That way we can discuss the change, evaluate designs, and agree on the general idea - [ ] Ensure the tests and linter pass - [ ] Code coverage does not decrease (if any source code was changed) - [ ] Appropriate docs were updated (if necessary) Fixes #<issue_number_goes_here> 🦕
1 parent a2f2b65 commit 867951b
Copy full SHA for 867951b

1 file changed

+7Lines changed: 7 additions & 0 deletions

File tree

Expand file treeCollapse file tree
Open diff view settings
Filter options
Expand file treeCollapse file tree
Open diff view settings
Collapse file

‎bigframes/_config/experiment_options.py‎

Copy file name to clipboardExpand all lines: bigframes/_config/experiment_options.py
+7Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,13 @@ def ai_operators(self, value: bool):
7272

7373
@property
7474
def sql_compiler(self) -> Literal["legacy", "stable", "experimental"]:
75+
"""Set to 'experimental' to try out the latest in compilation experiments..
76+
77+
**Examples:**
78+
79+
>>> import bigframes.pandas as bpd
80+
>>> bpd.options.experiments.sql_compiler = 'experimental' # doctest: +SKIP
81+
"""
7582
return self._sql_compiler
7683

7784
@sql_compiler.setter

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.