| 1429 | func (e *queryErrorExecutor) Close() error { return nil } |
| 1430 | |
| 1431 | type abortedSelectRecoveryExecutor struct { |
| 1432 | queryCalls int |
| 1433 | noopProfiling |
| 1434 | rollbackCalls int |
| 1435 | } |
| 1436 | |
| 1437 | func (e *abortedSelectRecoveryExecutor) QueryContext(context.Context, string, ...any) (RowSet, error) { |
| 1438 | e.queryCalls++ |
nothing calls this directly
no outgoing calls
no test coverage detected