(ctx Context, name string)
| 221 | func (d *SQLiteDialect) RenderVarDeclaration(ctx Context, name, typeName string) {} |
| 222 | |
| 223 | func (d *SQLiteDialect) RenderVar(ctx Context, name string) { |
| 224 | ctx.WriteString(`(SELECT id FROM _gj_ids WHERE k = '`) |
| 225 | ctx.WriteString(name) |
| 226 | ctx.WriteString(`')`) |
| 227 | } |
| 228 | |
| 229 | func (d *SQLiteDialect) RenderIDCapture(ctx Context, varName string) { |
| 230 | ctx.WriteString(`SET `) |
no test coverage detected