(ctx Context, qc *qcode.QCode)
| 783 | } |
| 784 | |
| 785 | func (d *SQLiteDialect) RenderMutationInput(ctx Context, qc *qcode.QCode) { |
| 786 | ctx.WriteString(`WITH `) |
| 787 | ctx.Quote("_sg_input") |
| 788 | ctx.WriteString(` AS (SELECT `) |
| 789 | ctx.AddParam(Param{Name: qc.ActionVar, Type: "json"}) |
| 790 | ctx.WriteString(` AS j)`) |
| 791 | } |
| 792 | |
| 793 | func (d *SQLiteDialect) RenderMutationPostamble(ctx Context, qc *qcode.QCode) { |
| 794 | // SQLite does nothing at the end of mutation |
nothing calls this directly
no test coverage detected