Skip to content

Commit

Permalink
add telemetry to explode (snowflakedb#774)
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-aalam authored Apr 8, 2023
1 parent 0127f57 commit 6de4fa2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/snowflake/snowpark/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -1006,7 +1006,9 @@ def explode(col: ColumnOrName) -> TableFunctionCall:
--------------------------------
<BLANKLINE>
"""
return _ExplodeFunctionCall(col)
func_call = _ExplodeFunctionCall(col)
func_call._set_api_call_source("functions.explode")
return func_call


def grouping(*cols: ColumnOrName) -> Column:
Expand Down

0 comments on commit 6de4fa2

Please sign in to comment.