Query calls tx.Query.
(ctx context.Context, query string, args, v any)
| 234 | |
| 235 | // Query calls tx.Query. |
| 236 | func (tx *txDriver) Query(ctx context.Context, query string, args, v any) error { |
| 237 | return tx.tx.Query(ctx, query, args, v) |
| 238 | } |
| 239 | |
| 240 | var _ dialect.Driver = (*txDriver)(nil) |
no outgoing calls