| 37 | } |
| 38 | |
| 39 | type errorQueryRewriter struct { |
| 40 | err error |
| 41 | } |
| 42 | |
| 43 | func (r errorQueryRewriter) RewriteQuery(ctx context.Context, conn *Conn, sql string, args []any) (newSQL string, newArgs []any, err error) { |
| 44 | return "", nil, r.err |
nothing calls this directly
no outgoing calls
no test coverage detected