Merge pull request #1304 from gernest/patch-1

Fix *Scope.buildNotCondition
This commit is contained in:
Jinzhu 2017-01-05 22:27:20 +08:00 committed by GitHub
commit 373207d546
1 changed files with 2 additions and 1 deletions

View File

@ -593,8 +593,9 @@ func (scope *Scope) buildNotCondition(clause map[string]interface{}) (str string
if reflect.ValueOf(value).Len() > 0 {
str = fmt.Sprintf("(%v.%v NOT IN (?))", scope.QuotedTableName(), scope.Quote(primaryKey))
clause["args"] = []interface{}{value}
} else {
return ""
}
return ""
case map[string]interface{}:
var sqls []string
for key, value := range value {