(self, compiler, connection)
| 24 | return "(%s) %%%% 3 = %s" % (lhs, rhs), params |
| 25 | |
| 26 | def as_oracle(self, compiler, connection): |
| 27 | lhs, lhs_params = self.process_lhs(compiler, connection) |
| 28 | rhs, rhs_params = self.process_rhs(compiler, connection) |
| 29 | params = (*lhs_params, *rhs_params) |
| 30 | return "mod(%s, 3) = %s" % (lhs, rhs), params |
| 31 | |
| 32 | |
| 33 | class Div3Transform(models.Transform): |
nothing calls this directly
no test coverage detected