(query interface{}, args ...interface{})
| 149 | } |
| 150 | |
| 151 | func (b *sqlBuilder) Exec(query interface{}, args ...interface{}) (sql.Result, error) { |
| 152 | return b.ExecContext(b.sess.Context(), query, args...) |
| 153 | } |
| 154 | |
| 155 | func (b *sqlBuilder) ExecContext(ctx context.Context, query interface{}, args ...interface{}) (sql.Result, error) { |
| 156 | switch q := query.(type) { |
nothing calls this directly
no test coverage detected