(query interface{}, args ...interface{})
| 123 | } |
| 124 | |
| 125 | func (b *sqlBuilder) Iterator(query interface{}, args ...interface{}) db.Iterator { |
| 126 | return b.IteratorContext(b.sess.Context(), query, args...) |
| 127 | } |
| 128 | |
| 129 | func (b *sqlBuilder) IteratorContext(ctx context.Context, query interface{}, args ...interface{}) db.Iterator { |
| 130 | rows, err := b.QueryContext(ctx, query, args...) |
nothing calls this directly
no test coverage detected