Skip to content

Commit

Permalink
[SNOW-1458256]: Ensure binary operations are present in telemetry (#1732
Browse files Browse the repository at this point in the history
)
  • Loading branch information
sfc-gh-rdurrani authored Jun 4, 2024
1 parent e7813c1 commit 11ea0a4
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions src/snowflake/snowpark/modin/plugin/_internal/telemetry.py
Original file line number Diff line number Diff line change
Expand Up @@ -470,6 +470,28 @@ def wrap(*args, **kwargs): # type: ignore
"__setitem__",
"__iter__",
"__repr__",
"__add__",
"__iadd__",
"__radd__",
"__mul__",
"__imul__",
"__rmul__",
"__pow__",
"__ipow__",
"__rpow__",
"__sub__",
"__isub__",
"__rsub__",
"__floordiv__",
"__ifloordiv__",
"__rfloordiv__",
"__truediv__",
"__itruediv__",
"__rtruediv__",
"__mod__",
"__imod__",
"__rmod__",
"__rdiv__",
}


Expand Down

0 comments on commit 11ea0a4

Please sign in to comment.