(query interface{}, args ...interface{})
| 166 | } |
| 167 | |
| 168 | func (b *sqlBuilder) Query(query interface{}, args ...interface{}) (*sql.Rows, error) { |
| 169 | return b.QueryContext(b.sess.Context(), query, args...) |
| 170 | } |
| 171 | |
| 172 | func (b *sqlBuilder) QueryContext(ctx context.Context, query interface{}, args ...interface{}) (*sql.Rows, error) { |
| 173 | switch q := query.(type) { |
nothing calls this directly
no test coverage detected