| 255 | } |
| 256 | |
| 257 | type testQueryRewriter struct { |
| 258 | sql string |
| 259 | args []any |
| 260 | } |
| 261 | |
| 262 | func (qr *testQueryRewriter) RewriteQuery(ctx context.Context, conn *pgx.Conn, sql string, args []any) (newSQL string, newArgs []any, err error) { |
| 263 | return qr.sql, qr.args, nil |
nothing calls this directly
no outgoing calls
no test coverage detected