Skip to content

Commit 38c3276

Browse files
address comments
1 parent f83ae56 commit 38c3276

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

src/snowflake/snowpark/modin/plugin/compiler/snowflake_query_compiler.py

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)