不要怂,就是干,撸起袖子干!

Commit a07fb759 by gavrilyak Committed by Sushant

fix(query): incorrect arguments passed to SQLString.escape (#8520)

1 parent 1ad7a405
Showing with 1 additions and 1 deletions
...@@ -44,7 +44,7 @@ class AbstractQuery { ...@@ -44,7 +44,7 @@ class AbstractQuery {
} else { } else {
replacementFunc = (match, key, values, timeZone, dialect) => { replacementFunc = (match, key, values, timeZone, dialect) => {
if (values[key] !== undefined) { if (values[key] !== undefined) {
return SqlString.escape(values[key], false, timeZone, dialect); return SqlString.escape(values[key], timeZone, dialect);
} }
return undefined; return undefined;
}; };
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!