(query string, args ...any)
| 108 | } |
| 109 | |
| 110 | func (e *PinnedExecutor) Query(query string, args ...any) (RowSet, error) { |
| 111 | rows, err := e.conn.QueryContext(context.Background(), query, args...) |
| 112 | if err != nil { |
| 113 | return nil, err |
| 114 | } |
| 115 | return &LocalRowSet{rows: rows}, nil |
| 116 | } |
| 117 | |
| 118 | func (e *PinnedExecutor) Exec(query string, args ...any) (ExecResult, error) { |
| 119 | return e.conn.ExecContext(context.Background(), query, args...) |
nothing calls this directly
no test coverage detected