Fix parameter order
This commit is contained in:
parent
1152977481
commit
18104fbcb5
|
@ -207,7 +207,7 @@ func (engine *Engine) QuoteTo(buf *strings.Builder, value string) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
quoteTo(buf, value, engine.dialect.Quote(""))
|
quoteTo(buf, engine.dialect.Quote(""), value)
|
||||||
}
|
}
|
||||||
|
|
||||||
func quoteTo(buf *strings.Builder, quotePair string, value string) {
|
func quoteTo(buf *strings.Builder, quotePair string, value string) {
|
||||||
|
|
Loading…
Reference in New Issue