Method
QueryRow
(ctx context.Context, query string, args ...any)
Source from the content-addressed store, hash-verified
| 232 | } |
| 233 | |
| 234 | func (tx *SharedSubTx) QueryRow(ctx context.Context, query string, args ...any) pgx.Row { |
| 235 | // pass through because we're already holding the lock at the executor level |
| 236 | return tx.inner.QueryRow(ctx, query, args...) |
| 237 | } |
| 238 | |
| 239 | func (tx *SharedSubTx) SendBatch(ctx context.Context, b *pgx.Batch) pgx.BatchResults { |
| 240 | // pass through because we're already holding the lock at the executor level |
Callers
nothing calls this directly
Tested by
no test coverage detected