Target database must support EXCEPT or equivalent (i.e. MINUS).
(self)
| 863 | |
| 864 | @property |
| 865 | def except_(self): |
| 866 | """Target database must support EXCEPT or equivalent (i.e. MINUS).""" |
| 867 | return fails_if( |
| 868 | [self._mysql_not_mariadb_103_not_mysql8031], |
| 869 | "no support for EXCEPT", |
| 870 | ) |
| 871 | |
| 872 | @property |
| 873 | def dupe_order_by_ok(self): |
no test coverage detected