1
0
mirror of https://github.com/gogf/gf.git synced 2025-04-05 11:18:50 +08:00

comment updates for gdb.Builder (#2513)

This commit is contained in:
忆灬凝 2023-03-28 09:23:08 +08:00 committed by GitHub
parent 12e9febe9e
commit 67e6772d88
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 3 deletions

View File

@ -125,3 +125,17 @@ func Test_Model_Builder(t *testing.T) {
t.Assert(args, []interface{}{1})
})
}
func Test_Safe_Builder(t *testing.T) {
// test whether m.Builder() is chain safe
gtest.C(t, func(t *gtest.T) {
b := db.Model().Builder()
b.Where("id", 1)
_, args := b.Build()
t.AssertNil(args)
b = b.Where("id", 1)
_, args = b.Build()
t.Assert(args, g.Slice{1})
})
}

View File

@ -25,7 +25,7 @@ type WhereHolder struct {
Prefix string // Field prefix, eg: "user.", "order.".
}
// Builder creates and returns a WhereBuilder.
// Builder creates and returns a WhereBuilder. Please note that the builder is chain-safe.
func (m *Model) Builder() *WhereBuilder {
b := &WhereBuilder{
model: m,
@ -34,8 +34,7 @@ func (m *Model) Builder() *WhereBuilder {
return b
}
// getBuilder creates and returns a cloned WhereBuilder of current WhereBuilder if `safe` is true,
// or else it returns the current WhereBuilder.
// getBuilder creates and returns a cloned WhereBuilder of current WhereBuilder
func (b *WhereBuilder) getBuilder() *WhereBuilder {
return b.Clone()
}