| 18 | ) |
| 19 | |
| 20 | type capturingTx struct { |
| 21 | tx *sql.Tx |
| 22 | onExec func(query string, args []any) |
| 23 | onQueryRow func(query string, args []any) |
| 24 | } |
| 25 | |
| 26 | func (t *capturingTx) ExecContext(ctx context.Context, query string, args ...any) (sql.Result, error) { |
| 27 | if t.onExec != nil { |
nothing calls this directly
no outgoing calls
no test coverage detected