Exec calls tx.Exec.
(ctx context.Context, query string, args, v any)
| 229 | |
| 230 | // Exec calls tx.Exec. |
| 231 | func (tx *txDriver) Exec(ctx context.Context, query string, args, v any) error { |
| 232 | return tx.tx.Exec(ctx, query, args, v) |
| 233 | } |
| 234 | |
| 235 | // Query calls tx.Query. |
| 236 | func (tx *txDriver) Query(ctx context.Context, query string, args, v any) error { |
no outgoing calls
no test coverage detected