(m map[string]string)
| 445 | } |
| 446 | |
| 447 | func (c chainG[T]) MapColumns(m map[string]string) ChainInterface[T] { |
| 448 | return c.with(func(db *DB) *DB { |
| 449 | return db.MapColumns(m) |
| 450 | }) |
| 451 | } |
| 452 | |
| 453 | func (c chainG[T]) Set(assignments ...clause.Assigner) SetUpdateOnlyInterface[T] { |
| 454 | return c.processSet(assignments...) |
nothing calls this directly
no test coverage detected