Target database must support INTERSECT or equivalent.
(self)
| 854 | |
| 855 | @property |
| 856 | def intersect(self): |
| 857 | """Target database must support INTERSECT or equivalent.""" |
| 858 | |
| 859 | return fails_if( |
| 860 | [self._mysql_not_mariadb_103_not_mysql8031], |
| 861 | "no support for INTERSECT", |
| 862 | ) |
| 863 | |
| 864 | @property |
| 865 | def except_(self): |