mirror of
https://github.com/gogf/gf.git
synced 2025-04-05 03:05:05 +08:00
parent
7f1ce2aff3
commit
8c309ac9fe
@ -797,3 +797,28 @@ func Test_Issue2787(t *testing.T) {
|
||||
t.Assert(condWhere, "((`nickname`=?) OR (`password`=?)) AND (`passport`=?)")
|
||||
})
|
||||
}
|
||||
|
||||
// https://github.com/gogf/gf/issues/2907
|
||||
func Test_Issue2907(t *testing.T) {
|
||||
table := createInitTable()
|
||||
defer dropTable(table)
|
||||
gtest.C(t, func(t *gtest.T) {
|
||||
var (
|
||||
orm = db.Model(table)
|
||||
err error
|
||||
)
|
||||
|
||||
orm = orm.WherePrefixNotIn(
|
||||
table,
|
||||
"id",
|
||||
[]int{
|
||||
1,
|
||||
2,
|
||||
},
|
||||
)
|
||||
all, err := orm.OrderAsc("id").All()
|
||||
t.AssertNil(err)
|
||||
t.Assert(len(all), TableSize-2)
|
||||
t.Assert(all[0]["id"], 3)
|
||||
})
|
||||
}
|
||||
|
@ -81,7 +81,7 @@ func (m *Model) WherePrefixNot(prefix string, column string, value interface{})
|
||||
// WherePrefixNotIn builds `prefix.column NOT IN (in)` statement.
|
||||
// See WhereBuilder.WherePrefixNotIn.
|
||||
func (m *Model) WherePrefixNotIn(prefix string, column string, in interface{}) *Model {
|
||||
return m.callWhereBuilder(m.whereBuilder.WherePrefixNot(prefix, column, in))
|
||||
return m.callWhereBuilder(m.whereBuilder.WherePrefixNotIn(prefix, column, in))
|
||||
}
|
||||
|
||||
// WherePrefixNotNull builds `prefix.columns[0] IS NOT NULL AND prefix.columns[1] IS NOT NULL ...` statement.
|
||||
|
Loading…
x
Reference in New Issue
Block a user