Query calls tx.Query.
(ctx context.Context, query string, args, v any)
| 204 | |
| 205 | // Query calls tx.Query. |
| 206 | func (tx *txDriver) Query(ctx context.Context, query string, args, v any) error { |
| 207 | return tx.tx.Query(ctx, query, args, v) |
| 208 | } |
| 209 | |
| 210 | var _ dialect.Driver = (*txDriver)(nil) |
no outgoing calls
no test coverage detected