Fix parameter order

This commit is contained in:
Guillermo Prandi 2019-11-04 23:50:33 -03:00
parent 1152977481
commit 18104fbcb5
1 changed files with 1 additions and 1 deletions

View File

@ -207,7 +207,7 @@ func (engine *Engine) QuoteTo(buf *strings.Builder, value string) {
return
}
quoteTo(buf, value, engine.dialect.Quote(""))
quoteTo(buf, engine.dialect.Quote(""), value)
}
func quoteTo(buf *strings.Builder, quotePair string, value string) {