Query calls tx.Query.
(ctx context.Context, query string, args, v any)
| 251 | |
| 252 | // Query calls tx.Query. |
| 253 | func (tx *txDriver) Query(ctx context.Context, query string, args, v any) error { |
| 254 | return tx.tx.Query(ctx, query, args, v) |
| 255 | } |
| 256 | |
| 257 | var _ dialect.Driver = (*txDriver)(nil) |
| 258 |
no outgoing calls
no test coverage detected