(b *sqlBuilder, terms ...interface{})
| 24 | } |
| 25 | |
| 26 | func (uq *updaterQuery) and(b *sqlBuilder, terms ...interface{}) error { |
| 27 | where, whereArgs := b.t.toWhereWithArguments(terms) |
| 28 | |
| 29 | if uq.where == nil { |
| 30 | uq.where, uq.whereArgs = &exql.Where{}, []interface{}{} |
| 31 | } |
| 32 | uq.where.Append(&where) |
| 33 | uq.whereArgs = append(uq.whereArgs, whereArgs...) |
| 34 | |
| 35 | return nil |
| 36 | } |
| 37 | |
| 38 | func (uq *updaterQuery) statement() *exql.Statement { |
| 39 | stmt := &exql.Statement{ |
no test coverage detected