From 3494268b2a0b00958e919ed5eff8377f4d55ac0e Mon Sep 17 00:00:00 2001 From: Charles Duarte Date: Tue, 9 Feb 2021 17:24:55 -0300 Subject: [PATCH] fix(scope): non-standard function name [go-lint] Method CombinedConditionSql should be CombinedConditionSQL --- scope.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scope.go b/scope.go index ea12ee2f17..7b3cc515ec 100644 --- a/scope.go +++ b/scope.go @@ -339,8 +339,8 @@ func (scope *Scope) QuotedTableName() (name string) { return scope.Quote(scope.TableName()) } -// CombinedConditionSql return combined condition sql -func (scope *Scope) CombinedConditionSql() string { +// CombinedConditionSQL return combined condition sql +func (scope *Scope) CombinedConditionSQL() string { joinSQL := scope.joinsSQL() whereSQL := scope.whereSQL() if scope.Search.raw {