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
{{ message }}
This repository has been archived by the owner on Nov 9, 2021. It is now read-only.
After sql is genereted, code inside if (options.numberedParameters) replaces all options.parameterCharacter occurrences with named parameters, even if options.parameterCharacter is inside a string literal.
To reproduce this bug you can use the following code:
After sql is genereted, code inside
if (options.numberedParameters)
replaces alloptions.parameterCharacter
occurrences with named parameters, even ifoptions.parameterCharacter
is inside a string literal.To reproduce this bug you can use the following code:
Expected:
UPDATE table SET a = '?'
Got:
UPDATE table SET a = '$1'
The text was updated successfully, but these errors were encountered: