Added missing white space

This commit is contained in:
karolos lykos 2021-04-28 13:31:00 +03:00
parent 6431681b26
commit 499c7506fe

View File

@ -40,8 +40,7 @@ func (onConflict OnConflict) Build(builder Builder) {
} }
if len(onConflict.Where.Exprs) > 0 { if len(onConflict.Where.Exprs) > 0 {
builder.WriteByte(' ') builder.WriteString(" WHERE ")
builder.WriteString("WHERE ")
onConflict.Where.Build(builder) onConflict.Where.Build(builder)
builder.WriteByte(' ') builder.WriteByte(' ')
} }