You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Return the profiles of last executed stored procedure in current thread. If there is no previous
111
-
stored procedure call, an error will be raised.
112
-
Please call this function right after the stored procedure you want to profile to avoid any error.
107
+
Return the profiles of last executed stored procedure or UDF in current thread. If there is no previous
108
+
stored procedure or UDF call, an error will be raised.
109
+
Please call this function right after the stored procedure or UDF you want to profile to avoid any error.
113
110
114
111
"""
115
112
# return empty string when profiler is not enabled to not interrupt user's code
@@ -121,7 +118,7 @@ def get_output(self) -> str:
121
118
query_id=self._get_last_query_id()
122
119
ifquery_idisNone:
123
120
logger.warning(
124
-
"You are seeing this warning because last executed stored procedure does not exist. Please run the store procedure before get profiler output."
121
+
"You are seeing this warning because last executed stored procedure or UDF does not exist. Please run the store procedure or UDF before get profiler output."
0 commit comments