(ctx context.Context, query string, args ...any)
| 104 | } |
| 105 | |
| 106 | func (e *PinnedExecutor) ExecContext(ctx context.Context, query string, args ...any) (ExecResult, error) { |
| 107 | return e.conn.ExecContext(ctx, query, args...) |
| 108 | } |
| 109 | |
| 110 | func (e *PinnedExecutor) Query(query string, args ...any) (RowSet, error) { |
| 111 | rows, err := e.conn.QueryContext(context.Background(), query, args...) |
nothing calls this directly
no test coverage detected