acme-dns/vendor/gopkg.in/DATA-DOG/go-sqlmock.v1/rows_go18.go
2018-01-22 11:19:33 +02:00

21 lines
337 B
Go

// +build go1.8
package sqlmock
import "io"
// Implement the "RowsNextResultSet" interface
func (rs *rowSets) HasNextResultSet() bool {
return rs.pos+1 < len(rs.sets)
}
// Implement the "RowsNextResultSet" interface
func (rs *rowSets) NextResultSet() error {
if !rs.HasNextResultSet() {
return io.EOF
}
rs.pos++
return nil
}