From f0d0bbbc1012d309ae7b1802da7c5a16d896e2a9 Mon Sep 17 00:00:00 2001 From: Karolos Lykos Date: Thu, 29 Apr 2021 02:15:37 +0300 Subject: [PATCH] Added missing white space (#4330) * Added missing white space * Added missing white space * Added missing white space --- clause/on_conflict.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clause/on_conflict.go b/clause/on_conflict.go index f0c3d7e7..127d9bc1 100644 --- a/clause/on_conflict.go +++ b/clause/on_conflict.go @@ -40,7 +40,7 @@ func (onConflict OnConflict) Build(builder Builder) { } if len(onConflict.Where.Exprs) > 0 { - builder.WriteString("WHERE ") + builder.WriteString(" WHERE ") onConflict.Where.Build(builder) builder.WriteByte(' ') }