(self, qn, connection)
| 408 | prepare_rhs = False |
| 409 | |
| 410 | def process_rhs(self, qn, connection): |
| 411 | rhs, params = super().process_rhs(qn, connection) |
| 412 | if params: |
| 413 | params = (connection.ops.prep_for_iexact_query(params[0]), *params[1:]) |
| 414 | return rhs, params |
| 415 | |
| 416 | |
| 417 | @Field.register_lookup |
nothing calls this directly
no test coverage detected