()
| 83 | } |
| 84 | |
| 85 | func (upd *updater) String() string { |
| 86 | s, err := upd.Compile() |
| 87 | if err != nil { |
| 88 | panic(err.Error()) |
| 89 | } |
| 90 | return prepareQueryForDisplay(s) |
| 91 | } |
| 92 | |
| 93 | func (upd *updater) setTable(table string) *updater { |
| 94 | return upd.frame(func(uq *updaterQuery) error { |
nothing calls this directly
no test coverage detected