File tree Expand file tree Collapse file tree
packages/bigframes/bigframes/session Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -54,14 +54,15 @@ def __init__(
5454 publisher : bigframes .core .events .Publisher ,
5555 labels : Mapping [str , str ] = {},
5656 ):
57+ self ._enable_polars_execution = enable_polars_execution
5758 shared_cache = execution_cache .ExecutionCache ()
5859 self ._ibis_executor = bq_caching_executor .BigQueryCachingExecutor (
5960 bqclient ,
6061 storage_manager ,
6162 bqstoragereadclient ,
6263 loader ,
6364 metrics = metrics ,
64- enable_polars_execution = enable_polars_execution ,
65+ enable_polars_execution = self . _enable_polars_execution ,
6566 publisher = publisher ,
6667 labels = labels ,
6768 cache = shared_cache ,
@@ -73,7 +74,7 @@ def __init__(
7374 bqstoragereadclient ,
7475 loader ,
7576 metrics = metrics ,
76- enable_polars_execution = enable_polars_execution ,
77+ enable_polars_execution = self . _enable_polars_execution ,
7778 publisher = publisher ,
7879 labels = labels ,
7980 cache = shared_cache ,
You can’t perform that action at this time.
0 commit comments