(ctx Context, m *qcode.Mutate, where func())
| 682 | } |
| 683 | |
| 684 | func (d *SQLiteDialect) RenderDelete(ctx Context, m *qcode.Mutate, where func()) { |
| 685 | ctx.WriteString(`DELETE FROM `) |
| 686 | ctx.ColWithTable(m.Ti.Schema, m.Ti.Name) |
| 687 | ctx.WriteString(` WHERE `) |
| 688 | where() |
| 689 | } |
| 690 | |
| 691 | func (d *SQLiteDialect) RenderUpsert(ctx Context, m *qcode.Mutate, insert func(), updateSet func()) { |
| 692 | insert() |
nothing calls this directly
no test coverage detected