snowflake.snowpark.DataFrame.collect¶
- DataFrame.collect(*, statement_params: Dict[str, str] | None = None, block: bool = True) List[Row][source]¶
- DataFrame.collect(*, statement_params: Dict[str, str] | None = None, block: bool = False) AsyncJob
Executes the query representing this DataFrame and returns the result as a list of
Rowobjects.- Parameters:
statement_params – Dictionary of statement level parameters to be set while executing this action.
block – A bool value indicating whether this function will wait until the result is available. When it is
False, this function executes the underlying queries of the dataframe asynchronously and returns anAsyncJob.
See also