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

You need to sign in or sign up before continuing.
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 {
} else {
replacementFunc = (match, key, values, timeZone, dialect) => {
if (values[key] !== undefined) {
return SqlString.escape(values[key], false, timeZone, dialect);
return SqlString.escape(values[key], timeZone, dialect);
}
return undefined;
};
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!