(writer clause.Writer, s string)
| 22 | writer.WriteByte('?') |
| 23 | } |
| 24 | func (d testDialector) QuoteTo(writer clause.Writer, s string) { writer.WriteString(s) } |
| 25 | func (d testDialector) Explain(sql string, vars ...interface{}) string { return sql } |
| 26 | |
| 27 | // newTestDB returns a minimal *DB with an initialized Statement suitable for unit tests |
nothing calls this directly
no test coverage detected