diff --git a/clause/where.go b/clause/where.go index d04cdc5a..20a01136 100644 --- a/clause/where.go +++ b/clause/where.go @@ -95,11 +95,9 @@ func And(exprs ...Expression) Expression { } if len(exprs) == 1 { - if _, ok := exprs[0].(OrConditions); !ok { return exprs[0] } - } return AndConditions{Exprs: exprs}