db: return t.Rollback directly in the end of View function

Make return line of db.View corresponding with db.Update.
pull/41/head
lorneli 2017-09-10 14:53:37 +08:00
parent 4ff482b44e
commit ea18f34f9d
1 changed files with 1 additions and 5 deletions

6
db.go
View File

@ -687,11 +687,7 @@ func (db *DB) View(fn func(*Tx) error) error {
return err
}
if err := t.Rollback(); err != nil {
return err
}
return nil
return t.Rollback()
}
// Batch calls fn as part of a batch. It behaves similar to Update,