Target database must support EXCEPT or equivalent (i.e. MINUS).
(self)
| 828 | |
| 829 | @property |
| 830 | def except_(self): |
| 831 | """Target database must support EXCEPT or equivalent (i.e. MINUS).""" |
| 832 | return fails_if( |
| 833 | [self._mysql_not_mariadb_103_not_mysql8031], |
| 834 | "no support for EXCEPT", |
| 835 | ) |
| 836 | |
| 837 | @property |
| 838 | def dupe_order_by_ok(self): |
no test coverage detected