This repository has been archived by the owner on Jun 11, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 39
SQL instrumentation can break queries with no arguments in certain edgecases #94
Comments
jalvz
pushed a commit
that referenced
this issue
Feb 18, 2016
jalvz
pushed a commit
that referenced
this issue
Feb 19, 2016
Fixed in 3.2.2 |
This was referenced Jul 5, 2016
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
If a mysql query is made directly to
cursor.execute(query)
(as opposed tocursor.execute(query, args)
) and the query contains%
the driver will try to replace it using the format notation resulting in aTypeError: ('not enough arguments for format string')
.The text was updated successfully, but these errors were encountered: