We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 823ac99 commit 2242cb6Copy full SHA for 2242cb6
py-polars/src/polars/functions/lazy.py
@@ -25,7 +25,6 @@
25
from polars._utils.wrap import wrap_df, wrap_expr, wrap_s
26
from polars.datatypes import DTYPE_TEMPORAL_UNITS, Date, Datetime, Int64
27
from polars.datatypes._parse import parse_into_datatype_expr
28
-from polars.lazyframe.frame import _select_engine
29
from polars.lazyframe.opt_flags import (
30
DEFAULT_QUERY_OPT_FLAGS,
31
forward_old_opt_flags,
@@ -2174,6 +2173,8 @@ def collect_all(
2174
2173
lf = LazyFrame._from_pyldf(ldf)
2175
return lf
2176
+ from polars.lazyframe.frame import _select_engine
2177
+
2178
engine = _select_engine(engine)
2179
out = plr.collect_all(lfs, engine, optimizations._pyoptflags)
2180
0 commit comments