Query calls tx.Query.
(ctx context.Context, query string, args, v any)
| 261 | |
| 262 | // Query calls tx.Query. |
| 263 | func (tx *txDriver) Query(ctx context.Context, query string, args, v any) error { |
| 264 | return tx.tx.Query(ctx, query, args, v) |
| 265 | } |
| 266 | |
| 267 | var _ dialect.Driver = (*txDriver)(nil) |
no outgoing calls