Skip to content
This repository was archived by the owner on Apr 1, 2026. It is now read-only.

Commit 1a3d311

Browse files
reset compiler to stable
1 parent fecc37a commit 1a3d311

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bigframes/_config/experiment_options.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class ExperimentOptions:
2727
def __init__(self):
2828
self._semantic_operators: bool = False
2929
self._ai_operators: bool = False
30-
self._sql_compiler: Literal["legacy", "stable", "experimental"] = "experimental"
30+
self._sql_compiler: Literal["legacy", "stable", "experimental"] = "stable"
3131

3232
@property
3333
def semantic_operators(self) -> bool:

tests/unit/_config/test_experiment_options.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def test_ai_operators_set_true_shows_warning():
5151
def test_sql_compiler_default_stable():
5252
options = experiment_options.ExperimentOptions()
5353

54-
assert options.sql_compiler == "experimental"
54+
assert options.sql_compiler == "stable"
5555

5656

5757
def test_sql_compiler_set_experimental_shows_warning():

0 commit comments

Comments
 (0)