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
Describe the bug
When calling a stored procedure via Cursor.callproc, if the identifier for that sproc requires qualification (e.g. backticks), the call fails, often returning an "access denied" error because the user doesn't have EXECUTE access to the non-existent sproc.
Additionally, when calling callproc with args, the call fails worse because of the server variable identifier composition.
To Reproduce
Complete steps to reproduce the behavior:
Describe the bug
When calling a stored procedure via
Cursor.callproc
, if the identifier for that sproc requires qualification (e.g. backticks), the call fails, often returning an "access denied" error because the user doesn't have EXECUTE access to the non-existent sproc.Additionally, when calling
callproc
with args, the call fails worse because of the server variable identifier composition.To Reproduce
Complete steps to reproduce the behavior:
Schema:
Code:
Expected behavior
xxx.\
yyy.blah`` should be called@_yyy.blah_0
should exist and be set to 18Environment
The text was updated successfully, but these errors were encountered: