In a certain context it would be useful to disable character escaping of a query string or at least disable specifically '%' character escaping.
Is such thing possible? How?
I know it is possible to escape that character with '%%' but I want to avoid doing that.
Simple query example:
SELECT '%2C'
Expected result:
'%2C'
I'm using sqlalchemy and pymysql.