| 343 | ` |
| 344 | |
| 345 | type SetTxParams struct { |
| 346 | CurrentTx int64 |
| 347 | ID string |
| 348 | } |
| 349 | |
| 350 | func (q *Queries) SetTx(ctx context.Context, arg SetTxParams) error { |
| 351 | _, err := q.db.ExecContext(ctx, setTx, arg.CurrentTx, arg.ID) |
nothing calls this directly
no outgoing calls
no test coverage detected