diff --git a/lib/formatter/rawFormatter.js b/lib/formatter/rawFormatter.js index 800fcbfc57..4009c01686 100644 --- a/lib/formatter/rawFormatter.js +++ b/lib/formatter/rawFormatter.js @@ -12,7 +12,7 @@ function replaceRawArrBindings(raw, client) { const sql = raw.sql.replace(/\\?\?\??/g, function (match) { if (match === '\\?') { - return match; + return "?"; } const value = values[index++];