(rows *sql.Rows)
| 119 | } |
| 120 | |
| 121 | func (b *sqlBuilder) NewIterator(rows *sql.Rows) db.Iterator { |
| 122 | return b.NewIteratorContext(b.sess.Context(), rows) |
| 123 | } |
| 124 | |
| 125 | func (b *sqlBuilder) Iterator(query interface{}, args ...interface{}) db.Iterator { |
| 126 | return b.IteratorContext(b.sess.Context(), query, args...) |
nothing calls this directly
no test coverage detected