vendor dependencies with dep

This commit is contained in:
dhax 2017-09-25 20:20:52 +02:00
parent 93d8310491
commit 1384296a47
2712 changed files with 965742 additions and 0 deletions

49
vendor/github.com/go-pg/pg/result.go generated vendored Normal file
View file

@ -0,0 +1,49 @@
package pg
import (
"bytes"
"strconv"
"github.com/go-pg/pg/internal"
"github.com/go-pg/pg/orm"
)
// A result summarizes an executed SQL command.
type result struct {
model orm.Model
affected int
returned int
}
var _ orm.Result = (*result)(nil)
func (res *result) parse(b []byte) error {
res.affected = -1
ind := bytes.LastIndexByte(b, ' ')
if ind == -1 {
return nil
}
s := internal.BytesToString(b[ind+1 : len(b)-1])
affected, err := strconv.Atoi(s)
if err == nil {
res.affected = affected
}
return nil
}
func (res *result) Model() orm.Model {
return res.model
}
func (res *result) RowsAffected() int {
return res.affected
}
func (res *result) RowsReturned() int {
return res.returned
}