refactor: simplify the code (#1835)

master
Kevin Wan 3 years ago committed by GitHub
parent 5bcee4cf7c
commit 1a38eddffe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -100,28 +100,23 @@ func format(query string, args ...interface{}) (string, error) {
}
case '\'', '"', '`':
b.WriteByte(ch)
for j := i + 1; j < bytes; j++ {
cur := query[j]
b.WriteByte(cur)
switch cur {
case '\\':
if cur == '\\' {
j++
if j >= bytes {
return "", errUnbalancedEscape
}
b.WriteByte(query[j])
case '\'', '"', '`':
if cur == ch {
} else if cur == ch {
i = j
goto end
}
break
}
}
end:
break
default:
b.WriteByte(ch)
}

Loading…
Cancel
Save