(ctx context.Context, sql string, args ...any)
| 71 | } |
| 72 | |
| 73 | func (tx *Tx) Query(ctx context.Context, sql string, args ...any) (pgx.Rows, error) { |
| 74 | return tx.t.Query(ctx, sql, args...) |
| 75 | } |
| 76 | |
| 77 | func (tx *Tx) QueryRow(ctx context.Context, sql string, args ...any) pgx.Row { |
| 78 | return tx.t.QueryRow(ctx, sql, args...) |