when reflecting a sdblob, insert all the stream and intermediate blobs using a transaction #50

Closed
shyba wants to merge 39 commits from insert_under_tx into master
Showing only changes of commit 13c6be981c - Show all commits

View file

@ -698,14 +698,8 @@ type txFunc func(tx *sql.Tx) error
// withTx wraps a function in an sql transaction. the transaction is committed if there's no error, or rolled back if there is one. // withTx wraps a function in an sql transaction. the transaction is committed if there's no error, or rolled back if there is one.
// if dbOrTx is an sql.DB, a new transaction is started // if dbOrTx is an sql.DB, a new transaction is started
func withTx(dbOrTx interface{}, f txFunc) (err error) { func (s *SQL) withTx(f txFunc) (err error) {
var tx *sql.Tx tx, err := s.conn.Begin()
switch t := dbOrTx.(type) {
case *sql.Tx:
tx = t
case *sql.DB:
tx, err = t.Begin()
if err != nil { if err != nil {
return err return err
} }
@ -723,9 +717,6 @@ func withTx(dbOrTx interface{}, f txFunc) (err error) {
err = errors.Err(tx.Commit()) err = errors.Err(tx.Commit())
} }
}() }()
default:
return errors.Err("db or tx required")
}
return f(tx) return f(tx)
} }