(self, connection, rhs)
| 734 | return super().as_sql(compiler, connection) |
| 735 | |
| 736 | def get_direct_rhs_sql(self, connection, rhs): |
| 737 | return connection.operators[self.lookup_name] % rhs |
| 738 | |
| 739 | def get_bound_params(self, start, finish): |
| 740 | raise NotImplementedError( |