(query string, args ...any)
| 116 | } |
| 117 | |
| 118 | func (e *PinnedExecutor) Exec(query string, args ...any) (ExecResult, error) { |
| 119 | return e.conn.ExecContext(context.Background(), query, args...) |
| 120 | } |
| 121 | |
| 122 | func (e *PinnedExecutor) ConnContext(ctx context.Context) (RawConn, error) { |
| 123 | return e.db.Conn(ctx) |
nothing calls this directly
no test coverage detected