File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed
src/snowflake/snowpark/modin/plugin/compiler Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -16895,10 +16895,15 @@ def output_cols(
1689516895 Returns the list of columns that the input column will be split into.
1689616896 This is only used when expand=True.
1689716897 Args:
16898- column: input column
16899- pat: string to split on
16900- n: limit on the number of output splits
16901- max_splits: maximum number of achievable splits across all values in the input column
16898+ column : SnowparkColumn
16899+ Input column
16900+ pat : str
16901+ String to split on
16902+ n : int
16903+ Limit on the number of output splits
16904+ max_splits : int
16905+ Maximum number of achievable splits across all values in the input column.
16906+ This is needed to be able to pad rows with fewer splits than desired with nulls.
1690216907 """
1690316908 col = output_col(column, pat, n)
1690416909 final_splits = 0
You can’t perform that action at this time.
0 commit comments