File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
src/snowflake/snowpark/modin/plugin/compiler Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -4960,6 +4960,7 @@ def groupby_apply(
49604960 include_groups: bool,
49614961 force_single_group: bool = False,
49624962 force_list_like_to_series: bool = False,
4963+ is_transform: bool = False,
49634964 ) -> "SnowflakeQueryCompiler":
49644965 """
49654966 Wrapper around _groupby_apply_internal to be supported in faster pandas.
@@ -4978,6 +4979,7 @@ def groupby_apply(
49784979 include_groups=include_groups,
49794980 force_single_group=force_single_group,
49804981 force_list_like_to_series=force_list_like_to_series,
4982+ is_transform=is_transform,
49814983 )
49824984 )
49834985 qc = self._groupby_apply_internal(
@@ -4991,6 +4993,7 @@ def groupby_apply(
49914993 include_groups=include_groups,
49924994 force_single_group=force_single_group,
49934995 force_list_like_to_series=force_list_like_to_series,
4996+ is_transform=is_transform,
49944997 )
49954998 return self._maybe_set_relaxed_qc(qc, relaxed_query_compiler)
49964999
You can’t perform that action at this time.
0 commit comments