()
| 134 | } |
| 135 | |
| 136 | func DefaultTXOptions() *TxOptions { |
| 137 | return &TxOptions{ |
| 138 | Isolation: sql.LevelDefault, |
| 139 | ReadOnly: false, |
| 140 | } |
| 141 | } |
| 142 | |
| 143 | func (q *sqlQuerier) InTx(function func(Store) error, txOpts *TxOptions) error { |
| 144 | _, inTx := q.db.(*sqlx.Tx) |
no outgoing calls