MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / intersect

Method intersect

test/requirements.py:856–862  ·  view source on GitHub ↗

Target database must support INTERSECT or equivalent.

(self)

Source from the content-addressed store, hash-verified

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):

Callers 2

test_intersectMethod · 0.45

Calls 1

fails_ifFunction · 0.90

Tested by 1

test_intersectMethod · 0.36