polars_cloud.LazyFrameExt.collect#
- LazyFrameExt.collect() LazyFrame #
Start executing the query and store a temporary result.
Collect will immediately block this thread and wait for a successful result. It will immediately turn the result into a
LazyFrame
.This is syntactic sugar for:
.execute().await_result().lazy()